aboutsummaryrefslogtreecommitdiff
path: root/.config/nvim/lua/plugins/treesitter.lua
diff options
context:
space:
mode:
authorsrdusr <trevorgray@srdusr.com>2023-02-10 11:19:21 +0200
committersrdusr <trevorgray@srdusr.com>2023-02-10 11:19:21 +0200
commitb91ee8da3ef2c1c154833b4b6e99250fe2c280e7 (patch)
tree56bc9d8b84e959105ee6c7e3ac6c9ab97bd71bbe /.config/nvim/lua/plugins/treesitter.lua
parentd90ccf4d620eb6da75f1dbf8aa98aa85aa799ffe (diff)
downloaddotfiles-b91ee8da3ef2c1c154833b4b6e99250fe2c280e7.tar.gz
dotfiles-b91ee8da3ef2c1c154833b4b6e99250fe2c280e7.zip
Removed all nvim files
Diffstat (limited to '.config/nvim/lua/plugins/treesitter.lua')
-rw-r--r--.config/nvim/lua/plugins/treesitter.lua31
1 files changed, 0 insertions, 31 deletions
diff --git a/.config/nvim/lua/plugins/treesitter.lua b/.config/nvim/lua/plugins/treesitter.lua
deleted file mode 100644
index 7f481d3..0000000
--- a/.config/nvim/lua/plugins/treesitter.lua
+++ /dev/null
@@ -1,31 +0,0 @@
-require'nvim-treesitter.configs'.setup {
- -- A list of parser names, or "all" (the four listed parsers should always be installed)
-
- ensure_installed = {
- "c",
- "bash",
- "lua",
- "rust",
- },
- --ensure_installed = "all", -- one of "all" or a list of languages
- --ignore_install = { "" }, -- List of parsers to ignore installing
- sync_install = false,
- auto_install = true,
- highlight = {
- enable = false,
- disable = {},
- },
- indent = {
- enable = true,
- disable = {},
- --disable = { "python", "css" }
- },
- autotag = {
- enable = true,
- },
-}
---vim.opt.foldmethod = "expr"
---vim.opt.foldexpr = "nvim_treesitter#foldexpr()"
-
---local parser_config = require "nvim-treesitter.parsers".get_parser_configs()
---parser_config.tsx.filetype_to_parsername = { "javascript", "typescript.tsx" }