This commit is contained in:
dlond 2025-05-26 05:30:45 +12:00
parent d619d03e56
commit 003d871cdd
3 changed files with 18 additions and 0 deletions

View File

@ -0,0 +1,9 @@
return {
'saghen/blink.cmp',
opts = {
fuzzy = {
engine = 'lua', -- prevent warning about native lib
max_distance = 2,
},
},
}

View File

@ -11,4 +11,8 @@ return {
{ import = 'custom.plugins.telescope' },
{ import = 'custom.plugins.theme' },
{ import = 'custom.plugins.treesitter' },
{
'nvim-tree/nvim-web-devicons',
lazy = true,
},
}

View File

@ -6,6 +6,8 @@ return {
'nvim-treesitter/nvim-treesitter',
-- build = ':TSUpdate', -- Keep build command if needed from kickstart
-- main = 'nvim-treesitter.configs', -- Keep if needed from kickstart
event = { 'BufReadPost', 'BufNewFile' },
build = ':TSUpdate',
opts = { -- Use opts to merge/override defaults
ensure_installed = {
'bash',
@ -38,6 +40,9 @@ return {
-- disable = { 'ruby' }, -- Keep if needed
},
},
config = function(_, opts)
require('nvim-treesitter.configs').setup(opts)
end,
-- If kickstart used a config function for treesitter and you need to replicate
-- parts of it that aren't handled by opts, add it here.
-- config = function(_, opts)