summaryrefslogtreecommitdiff
path: root/lua/plugins/treesitter-config.lua
diff options
context:
space:
mode:
authorChristian Chiarulli <[email protected]>2021-03-14 15:10:28 -0400
committerGitHub <[email protected]>2021-03-14 15:10:28 -0400
commit0dc3c5030b778d5256cad5d9529e9ecf7fbfb233 (patch)
tree420e44f62d95d138eec36baa4d1bd5b6c9390ae6 /lua/plugins/treesitter-config.lua
parentd002b0419a8621c5575c14119d0b8d9c4a7a44a0 (diff)
The Lua Journey Begins...
Diffstat (limited to 'lua/plugins/treesitter-config.lua')
-rw-r--r--lua/plugins/treesitter-config.lua34
1 files changed, 0 insertions, 34 deletions
diff --git a/lua/plugins/treesitter-config.lua b/lua/plugins/treesitter-config.lua
deleted file mode 100644
index 30b65d82..00000000
--- a/lua/plugins/treesitter-config.lua
+++ /dev/null
@@ -1,34 +0,0 @@
-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
- }
-}
-
-
--- require'nvim-treesitter.configs'.setup {
--- refactor = {
--- highlight_current_scope = { enable = false },
--- },
--- }
-
--- require'nvim-treesitter.configs'.setup {
--- refactor = {
--- smart_rename = {
--- enable = true,
--- keymaps = {
--- smart_rename = "grr",
--- },
--- },
--- },
--- }
-