From b210e2936ef1233b65386fb27229157562cb7acd Mon Sep 17 00:00:00 2001 From: Gustaf Rydholm Date: Tue, 11 Jan 2022 22:34:55 +0100 Subject: Add treesitter config --- lua/plugins/config/treesitter.lua | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 lua/plugins/config/treesitter.lua (limited to 'lua/plugins/config') 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" } }, +}) -- cgit v1.2.3-70-g09d2