From b760e0912739bf73b8b26c50a13a33f8a0ce477c Mon Sep 17 00:00:00 2001 From: Franciszek Malinka Date: Sun, 10 Apr 2022 14:57:14 +0200 Subject: My current configuration --- lua/user/treesitter.lua | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 lua/user/treesitter.lua (limited to 'lua/user/treesitter.lua') diff --git a/lua/user/treesitter.lua b/lua/user/treesitter.lua new file mode 100644 index 0000000..ede8999 --- /dev/null +++ b/lua/user/treesitter.lua @@ -0,0 +1,16 @@ +local status_ok, configs = pcall(require, "nvim-treesitter.configs") +if not status_ok then + return +end + +configs.setup { + ensure_installed = "maintained", + sync_install = false, + ignore_install = { "" }, + highlight = { + enable = true, + disable = { "" }, + additional_vim_regex_highlighting = true, + }, + indent = { enable = true, disable = { "yaml" } }, +} -- cgit v1.2.3