mirror of
https://github.com/d0zingcat/dotfiles.git
synced 2026-05-17 15:09:50 +00:00
init
This commit is contained in:
14
nvim/lua/config/nvim_treesitter.lua
Normal file
14
nvim/lua/config/nvim_treesitter.lua
Normal file
@@ -0,0 +1,14 @@
|
||||
-- treesitter
|
||||
require('nvim-treesitter.configs').setup({
|
||||
ensure_installed = 'maintained', -- one of "all", "maintained" (parsers with maintainers), or a list of languages
|
||||
ignore_install = { 'javascript' }, -- List of parsers to ignore installing
|
||||
highlight = {
|
||||
enable = true, -- false will disable the whole extension
|
||||
disable = {}, -- list of language that will be disabled
|
||||
-- Setting this to true will run `:h syntax` and tree-sitter at the same time.
|
||||
-- Set this to `true` if you depend on 'syntax' being enabled (like for indentation).
|
||||
-- Using this option may slow down your editor, and you may see some duplicate highlights.
|
||||
-- Instead of true it can also be a list of languages
|
||||
additional_vim_regex_highlighting = false,
|
||||
},
|
||||
})
|
||||
Reference in New Issue
Block a user