Initial Commit
This commit is contained in:
commit
f2ff7bda11
18 changed files with 342 additions and 0 deletions
16
after/plugin/treesitter.lua
Executable file
16
after/plugin/treesitter.lua
Executable file
|
|
@ -0,0 +1,16 @@
|
|||
require'nvim-treesitter.configs'.setup {
|
||||
ensure_installed = { "vim", "javascript", "html", "css", "python", "java", "lua", "perl", "php", "c" },
|
||||
|
||||
ignore_install = { "latex", "markdown", "htmldjango" },
|
||||
|
||||
sync_install = false,
|
||||
|
||||
auto_install = false,
|
||||
|
||||
highlight = {
|
||||
enable = true,
|
||||
|
||||
addition_vim_regex_highlighting = false,
|
||||
},
|
||||
}
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue