win-nvim/after/plugin/treesitter.lua

20 lines
700 B
Lua
Raw Normal View History

2024-11-10 11:23:44 +00:00
require'nvim-treesitter.configs'.setup {
-- A list of parser names, or "all" (the five listed parsers should always be installed)
2024-11-10 15:49:52 +00:00
ensure_installed = { "javascript", "c", "cpp", "lua", "vim", "vimdoc", "query", "glsl" },
2024-11-10 11:23:44 +00:00
-- Install parsers synchronously (only applied to `ensure_installed`)
sync_install = false,
-- Automatically install missing parsers when entering buffer
-- Recommendation: set to false if you don't have `tree-sitter` CLI installed locally
auto_install = true,
highlight = {
enable = true,
additional_vim_regex_highlighting = false,
},
}
2024-11-10 15:49:52 +00:00
--vim.treesitter.language.register("glsl", {'gl', 'glsl', 'fx'})
vim.treesitter.language.register("glsl", 'gl')