my config
This commit is contained in:
parent
94f551b803
commit
dece0f088a
15 changed files with 189 additions and 424 deletions
15
lua/custom/plugins/treesitter.lua
Normal file
15
lua/custom/plugins/treesitter.lua
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
return {
|
||||
'nvim-treesitter/nvim-treesitter',
|
||||
version = '*',
|
||||
config = function()
|
||||
require('nvim-treesitter.configs').setup {
|
||||
ensure_installed = { 'c', 'lua', 'markdown', 'cmake' },
|
||||
sync_install = false,
|
||||
auto_install = true,
|
||||
|
||||
highlight = {
|
||||
enable = true,
|
||||
},
|
||||
}
|
||||
end,
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue