From e777ea62f96b43e63f6ed5d6fedb4177497c3734 Mon Sep 17 00:00:00 2001 From: kj_sh604 Date: Tue, 2 Jun 2026 07:52:44 -0400 Subject: refactor: put nvim config into one file --- .config/nvim/lua/tree.lua | 32 -------------------------------- 1 file changed, 32 deletions(-) delete mode 100644 .config/nvim/lua/tree.lua (limited to '.config/nvim/lua/tree.lua') 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", - }, - }, -} -- cgit v1.2.3