Files
nix-dotfiles/home-manager/nvim/treesitter.lua
2024-03-26 00:04:01 +00:00

10 lines
256 B
Lua

require("nvim-treesitter.configs").setup({
-- Automatically install missing parsers when entering buffer
-- Recommendation: set to false if you don't have `tree-sitter` CLI installed locally
auto_install = false,
highlight = {
enable = true,
},
})