summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGustaf Rydholm <gustaf.rydholm@gmail.com>2022-01-11 22:34:55 +0100
committerGustaf Rydholm <gustaf.rydholm@gmail.com>2022-01-11 22:34:55 +0100
commitb210e2936ef1233b65386fb27229157562cb7acd (patch)
tree2ee59a1271aa625e39f86d912cd3fd0b95e0399c
parentf83b37f1c8f761859746be52d659fe6d96984761 (diff)
Add treesitter config
-rw-r--r--lua/plugins/config/treesitter.lua19
1 files changed, 19 insertions, 0 deletions
diff --git a/lua/plugins/config/treesitter.lua b/lua/plugins/config/treesitter.lua
new file mode 100644
index 0000000..8feffc9
--- /dev/null
+++ b/lua/plugins/config/treesitter.lua
@@ -0,0 +1,19 @@
+-- Treesitter is a tool for building syntax trees for source files.
+-- In the neovim context it helps with better coloring.
+
+local status_ok, treesitter = pcall(require, "nvim-treesitter.configs")
+if not status_ok then
+ return
+end
+
+treesitter.setup({
+ ensure_installed = "maintained",
+ sync_install = false,
+ ignore_install = { "" }, -- List of parsers to ignore installing
+ highlight = {
+ enable = true, -- false will disable the whole extension
+ disable = { "" }, -- list of language that will be disabled
+ additional_vim_regex_highlighting = true,
+ },
+ indent = { enable = true, disable = { "yaml" } },
+})