aboutsummaryrefslogtreecommitdiffstats
path: root/.config/nvim/lua/tree.lua
diff options
context:
space:
mode:
authorkj_sh6042026-06-02 07:52:44 -0400
committerkj_sh6042026-06-02 07:52:44 -0400
commite777ea62f96b43e63f6ed5d6fedb4177497c3734 (patch)
treed8e26220bf22cc0ff6778d86cdf736b6f5f03eed /.config/nvim/lua/tree.lua
parent2d89de28fb8d785dbadb4b5e1d3c3a7156172b46 (diff)
refactor: put nvim config into one file
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",
- },
- },
-}