diff options
Diffstat (limited to 'lua/plugins/opts/treesitter.lua')
-rw-r--r-- | lua/plugins/opts/treesitter.lua | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/lua/plugins/opts/treesitter.lua b/lua/plugins/opts/treesitter.lua new file mode 100644 index 0000000..c9f9a59 --- /dev/null +++ b/lua/plugins/opts/treesitter.lua @@ -0,0 +1,24 @@ +return { + ensure_installed = { "lua", "c", "bash"}, + sync_install = false, + indent = { enable = true }, + + highlight = { + enable = true, + use_languagetree = true, + -- 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 = false, + + -- disable for > 100 KB files + disable = function(_, buf) + local max_filesize = 100 * 1024 -- 100 KB + local ok, stats = pcall(vim.loop.fs_stat, vim.api.nvim_buf_get_name(buf)) + if ok and stats and stats.size > max_filesize then + return true + end + end, + }, +} |