diff options
| author | Xander Swan <email> | 2025-12-03 10:00:41 -0500 |
|---|---|---|
| committer | Xander Swan <email> | 2025-12-03 10:00:41 -0500 |
| commit | ae7523c0c3cf8a04d35a7a448554e7b8d3a074f8 (patch) | |
| tree | e8fc0c29ed648b130501774fe045521b4786a97d /.config/nvim/lua/plugin/treesitter.lua | |
| parent | ab57a70296890a7cbc4bb8b47e309e4857c6cd29 (diff) | |
Goodest nvim conf
Diffstat (limited to '.config/nvim/lua/plugin/treesitter.lua')
| -rw-r--r-- | .config/nvim/lua/plugin/treesitter.lua | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/.config/nvim/lua/plugin/treesitter.lua b/.config/nvim/lua/plugin/treesitter.lua new file mode 100644 index 0000000..a6a4bf8 --- /dev/null +++ b/.config/nvim/lua/plugin/treesitter.lua @@ -0,0 +1,9 @@ +require("nvim-treesitter.configs").setup { + ensure_installed = { "c", "rust", "lua", "vimdoc" }, + sync_install = false, + highlight = { + enable = true, + additional_vim_regex_highlighting = true, + }, + indent = { enable = true }, +} |
