cleanup
This commit is contained in:
parent
d619d03e56
commit
003d871cdd
|
@ -0,0 +1,9 @@
|
||||||
|
return {
|
||||||
|
'saghen/blink.cmp',
|
||||||
|
opts = {
|
||||||
|
fuzzy = {
|
||||||
|
engine = 'lua', -- prevent warning about native lib
|
||||||
|
max_distance = 2,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
|
@ -11,4 +11,8 @@ return {
|
||||||
{ import = 'custom.plugins.telescope' },
|
{ import = 'custom.plugins.telescope' },
|
||||||
{ import = 'custom.plugins.theme' },
|
{ import = 'custom.plugins.theme' },
|
||||||
{ import = 'custom.plugins.treesitter' },
|
{ import = 'custom.plugins.treesitter' },
|
||||||
|
{
|
||||||
|
'nvim-tree/nvim-web-devicons',
|
||||||
|
lazy = true,
|
||||||
|
},
|
||||||
}
|
}
|
||||||
|
|
|
@ -6,6 +6,8 @@ return {
|
||||||
'nvim-treesitter/nvim-treesitter',
|
'nvim-treesitter/nvim-treesitter',
|
||||||
-- build = ':TSUpdate', -- Keep build command if needed from kickstart
|
-- build = ':TSUpdate', -- Keep build command if needed from kickstart
|
||||||
-- main = 'nvim-treesitter.configs', -- Keep 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
|
opts = { -- Use opts to merge/override defaults
|
||||||
ensure_installed = {
|
ensure_installed = {
|
||||||
'bash',
|
'bash',
|
||||||
|
@ -38,6 +40,9 @@ return {
|
||||||
-- disable = { 'ruby' }, -- Keep if needed
|
-- 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
|
-- 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.
|
-- parts of it that aren't handled by opts, add it here.
|
||||||
-- config = function(_, opts)
|
-- config = function(_, opts)
|
||||||
|
|
Loading…
Reference in New Issue