my config

This commit is contained in:
Ashley Lau 2025-02-17 21:23:53 +01:00
parent 94f551b803
commit dece0f088a
15 changed files with 189 additions and 424 deletions

View 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,
}