mirror of
https://github.com/tuxdotrs/tnvim.git
synced 2025-07-07 05:46:34 +05:30
initial commit
This commit is contained in:
17
modules/home-manager/nvim/old/lua/plugins/treesitter.lua
Normal file
17
modules/home-manager/nvim/old/lua/plugins/treesitter.lua
Normal file
@ -0,0 +1,17 @@
|
||||
return {
|
||||
'nvim-treesitter/nvim-treesitter',
|
||||
build = ':TSUpdate',
|
||||
config = function()
|
||||
require('nvim-treesitter.configs').setup {
|
||||
ensure_installed = { 'lua', 'nix' },
|
||||
|
||||
sync_install = false,
|
||||
auto_install = true,
|
||||
|
||||
highlight = {
|
||||
enable = true,
|
||||
additional_vim_regex_highlighting = false,
|
||||
},
|
||||
}
|
||||
end,
|
||||
}
|
Reference in New Issue
Block a user