aboutsummaryrefslogtreecommitdiffstats
path: root/.config/nvim/lua/tree.lua
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--.config/nvim/lua/tree.lua32
1 files changed, 0 insertions, 32 deletions
diff --git a/.config/nvim/lua/tree.lua b/.config/nvim/lua/tree.lua
deleted file mode 100644
index 24d5dc3..0000000
--- a/.config/nvim/lua/tree.lua
+++ /dev/null
@@ -1,32 +0,0 @@
-local status_ok, configs = pcall(require, "nvim-treesitter.configs")
-if not status_ok then
- return
-end
-
-configs.setup {
- ensure_installed = {
- "bash",
- "lua",
- "vim",
- "vimdoc",
- },
-
- sync_install = false,
- auto_install = true,
- ignore_install = { "" },
- highlight = {
- enable = true,
- disable = {
- "php",
- "markdown",
- "dockerfile"
- },
- additional_vim_regex_highlighting = false,
- },
- indent = {
- enable = true,
- disable = {
- "yaml",
- },
- },
-}