From 0dc3c5030b778d5256cad5d9529e9ecf7fbfb233 Mon Sep 17 00:00:00 2001 From: Christian Chiarulli Date: Sun, 14 Mar 2021 15:10:28 -0400 Subject: The Lua Journey Begins... --- lua/nv-treesitter/init.lua | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 lua/nv-treesitter/init.lua (limited to 'lua/nv-treesitter/init.lua') diff --git a/lua/nv-treesitter/init.lua b/lua/nv-treesitter/init.lua new file mode 100644 index 00000000..f0ecf6ac --- /dev/null +++ b/lua/nv-treesitter/init.lua @@ -0,0 +1,16 @@ +require'nvim-treesitter.configs'.setup { + ensure_installed = "all", -- one of "all", "maintained" (parsers with maintainers), or a list of languages + highlight = { + enable = true, -- false will disable the whole extension + }, + playground = { + enable = true, + disable = {}, + updatetime = 25, -- Debounced time for highlighting nodes in the playground from source code + persist_queries = false -- Whether the query persists across vim sessions + }, + rainbow = { + enable = false + } +} + -- cgit v1.2.3