diff options
author | Freya Murphy <freya@freyacat.org> | 2023-11-27 13:03:12 -0500 |
---|---|---|
committer | Freya Murphy <freya@freyacat.org> | 2023-11-27 13:03:12 -0500 |
commit | 849ab46bd68fd8e8c275cfa8b918a16cfcd59642 (patch) | |
tree | 0e6d10d74c6e5096ab8b6c725eb475949edb20fb /.config/nvim/lua/treesitter.lua | |
download | dotfiles-arch-849ab46bd68fd8e8c275cfa8b918a16cfcd59642.tar.gz dotfiles-arch-849ab46bd68fd8e8c275cfa8b918a16cfcd59642.tar.bz2 dotfiles-arch-849ab46bd68fd8e8c275cfa8b918a16cfcd59642.zip |
initial
Diffstat (limited to '.config/nvim/lua/treesitter.lua')
-rw-r--r-- | .config/nvim/lua/treesitter.lua | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/.config/nvim/lua/treesitter.lua b/.config/nvim/lua/treesitter.lua new file mode 100644 index 0000000..268ec0e --- /dev/null +++ b/.config/nvim/lua/treesitter.lua @@ -0,0 +1,30 @@ +local lsps = { + "c", + "lua", + "rust", + "typescript", + "javascript", + "python", + "vim", + "vimdoc", + "query" +}; + +require('nvim-treesitter.configs').setup { + ensure_installed = lsps, + sync_install = false, + auto_install = true, + ignore_install = { "javascript" }, + highlight = { + enable = true, + disable = { "c", "rust" }, + disable = function(lang, 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, + additional_vim_regex_highlighting = false, + }, +} |