Files
nixos-dotfiles/modules/coding/editor/neovim/nvim/lua/plugins/treesitter.lua
2025-04-13 15:09:14 +08:00

21 lines
347 B
Lua

M = {
auto_install = true,
parser_install_dir = "$HOME/.local/share/nvim/lazy/nvim-treesitter",
sync_install = true,
modules = {},
ignore_install = {},
highlight = { enable = true },
indent = { enable = true }
}
vim.filetype.add({
pattern = {
[".*/hypr/.*%.conf"] = "hyprlang",
[".*%.hl"] = "hyprlang"
},
})
return M