dotfiles/.config/nvim-sheldon/after/plugin/treesitter.lua

40 lines
1.5 KiB
Lua
Raw Normal View History

-- See https://web.archive.org/web/20240515160302/https://github.com/nvim-treesitter/nvim-treesitter/issues/556#issuecomment-1157664778
local function ts_disable(_, bufnr)
local count = vim.api.nvim_buf_line_count(bufnr)
local overlimit = count > 25000
if count == 0 then
return true
else
return overlimit
end
end
require'nvim-treesitter.configs'.setup {
-- A list of parser names, or "all" (the five listed parsers should always be installed)
ensure_installed = { "c", "cpp", "javascript", "lua", "typescript", "vim", "vimdoc", "query" },
-- 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 = true,
-- List of parsers to ignore installing (for "all")
--ignore_install = { "javascript" },
---- If you need to change the installation directory of the parsers (see -> Advanced Setup)
-- parser_install_dir = "/some/path/to/store/parsers", -- Remember to run vim.opt.runtimepath:append("/some/path/to/store/parsers")!
highlight = {
enable = true,
disable = ts_disable,
-- Setting this to true will run `:h syntax` and tree-sitter at the same time.
-- Set this to `true` if you depend on 'syntax' being enabled (like for indentation).
-- Using this option may slow down your editor, and you may see some duplicate highlights.
-- Instead of true it can also be a list of languages
additional_vim_regex_highlighting = true,
},
}