Files
ccl-nixos-dotfiles/modules/coding/editor/neovim/nvim/lua/plugins/treesitter.lua
imxyy_soope_ 53e15c2324 chore(nvim): a lot
format, fix nvim-tree startup, update telescope, drop unused plugins
2025-06-14 19:47:08 +08:00

20 lines
348 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