summaryrefslogtreecommitdiff
path: root/lua/nv-treesitter/init.lua
diff options
context:
space:
mode:
authorChris <[email protected]>2021-03-18 23:47:03 -0400
committerChris <[email protected]>2021-03-18 23:47:03 -0400
commit7eea23bb6c2449675a11f762838a8656d5de0f62 (patch)
tree0050dbc21797aa592cd93d306cbc644a04a8ed2a /lua/nv-treesitter/init.lua
parentb3f2348d97bdc85304e65f3f6cb8e272f4b674fb (diff)
prettier and eslint configured
Diffstat (limited to 'lua/nv-treesitter/init.lua')
-rw-r--r--lua/nv-treesitter/init.lua30
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}}
}