diff options
author | christianchiarulli <[email protected]> | 2021-04-15 00:17:48 -0400 |
---|---|---|
committer | christianchiarulli <[email protected]> | 2021-04-15 00:17:48 -0400 |
commit | 2cd8c6a21cb6c9af91e631f565e31f5803cdaa7c (patch) | |
tree | 7207301e310a278c0f91b4595ddc93fd98238093 /lua/nv-treesitter/init.lua | |
parent | 1853b4f2aa13b83ff542171060f92d3d4d961a68 (diff) |
LunarVim
Diffstat (limited to 'lua/nv-treesitter/init.lua')
-rw-r--r-- | lua/nv-treesitter/init.lua | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/lua/nv-treesitter/init.lua b/lua/nv-treesitter/init.lua deleted file mode 100644 index f846a917..00000000 --- a/lua/nv-treesitter/init.lua +++ /dev/null @@ -1,21 +0,0 @@ -require'nvim-treesitter.configs'.setup { - ensure_installed = O.treesitter.ensure_installed, -- one of "all", "maintained" (parsers with maintainers), or a list of languages - -- TODO seems to be broken - ignore_install = O.treesitter.ignore_install, - highlight = { - enable = O.treesitter.highlight.enabled -- false will disable the whole extension - }, - -- indent = {enable = true, disable = {"python", "html", "javascript"}}, - indent = {enable = {"javascriptreact"}}, - playground = { - enable = O.treesitter.playground.enabled, - disable = {}, - updatetime = 25, -- Debounced time for highlighting nodes in the playground from source code - persist_queries = false -- Whether the query persists across vim sessions - }, - autotag = {enable = true}, - rainbow = {enable = O.treesitter.rainbow.enabled}, - context_commentstring = {enable = true, config = {javascriptreact = {style_element = '{/*%s*/}'}}} - -- refactor = {highlight_definitions = {enable = true}} -} - |