From e72bc10296c0d4c145abd69a2b00bc8aad0004bb Mon Sep 17 00:00:00 2001 From: Jack Jamison Date: Mon, 16 Jun 2025 22:53:16 -0400 Subject: reorg --- .config/nvim/lua/user/plugins/treesitter.lua | 24 ------------------------ 1 file changed, 24 deletions(-) delete mode 100644 .config/nvim/lua/user/plugins/treesitter.lua (limited to '.config/nvim/lua/user/plugins/treesitter.lua') diff --git a/.config/nvim/lua/user/plugins/treesitter.lua b/.config/nvim/lua/user/plugins/treesitter.lua deleted file mode 100644 index 268e13d..0000000 --- a/.config/nvim/lua/user/plugins/treesitter.lua +++ /dev/null @@ -1,24 +0,0 @@ -return { - 'nvim-treesitter/nvim-treesitter', - ft = { 'c', 'cpp', 'zig', 'lua', 'rust' }, - build = ':TSUpdate', - config = function() - require('nvim-treesitter.configs').setup { - -- Add languages to be installed here that you want installed for treesitter - ensure_installed = { 'c', 'cpp', 'lua', 'rust', 'vimdoc', 'vim', 'zig' }, - - -- Install parsers synchronously (only applied to `ensure_installed`) - sync_install = false, - - -- Automatically install missing parsers when entering buffer - -- Recommendation: set to false if you don't have `tree-sitter` CLI installed locally - auto_install = false, - - highlight = { - enable = true, - disable = function(_, bufnr) return vim.api.nvim_buf_line_count(bufnr) > 10000 end, - additional_vim_regex_highlighting = false, - }, - } - end, -} -- cgit v1.2.3