diff options
author | Chris <[email protected]> | 2021-03-18 23:47:03 -0400 |
---|---|---|
committer | Chris <[email protected]> | 2021-03-18 23:47:03 -0400 |
commit | 7eea23bb6c2449675a11f762838a8656d5de0f62 (patch) | |
tree | 0050dbc21797aa592cd93d306cbc644a04a8ed2a /lua/nv-treesitter/init.lua | |
parent | b3f2348d97bdc85304e65f3f6cb8e272f4b674fb (diff) |
prettier and eslint configured
Diffstat (limited to 'lua/nv-treesitter/init.lua')
-rw-r--r-- | lua/nv-treesitter/init.lua | 30 |
1 files changed, 12 insertions, 18 deletions
diff --git a/lua/nv-treesitter/init.lua b/lua/nv-treesitter/init.lua index c7cd25d4..886dcad8 100644 --- a/lua/nv-treesitter/init.lua +++ b/lua/nv-treesitter/init.lua @@ -1,21 +1,15 @@ 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 - }, - refactor = { - highlight_definitions = { - enable = false - } - } + 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}, + -- refactor = {highlight_definitions = {enable = true}} } |