diff options
author | mhsn <mail@mhsn.net> | 2025-02-25 13:03:33 +0000 |
---|---|---|
committer | mhsn <mail@mhsn.net> | 2025-02-25 13:03:33 +0000 |
commit | ddb678e56144b14c02bc1ef14120720079e9582a (patch) | |
tree | 6c1585dbc125afa4e01d1fb8ff9bfe5cb1343746 | |
parent | c6e89431ec3848bb465c8353471d41b19db2fe1c (diff) | |
download | nvim-ddb678e56144b14c02bc1ef14120720079e9582a.tar.gz nvim-ddb678e56144b14c02bc1ef14120720079e9582a.zip |
add vim, vimdoc to nvim-treesitter ensure_installed
-rw-r--r-- | lua/plugins/nvim-treesitter.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/plugins/nvim-treesitter.lua b/lua/plugins/nvim-treesitter.lua index 5fc91d5..7bba53a 100644 --- a/lua/plugins/nvim-treesitter.lua +++ b/lua/plugins/nvim-treesitter.lua @@ -4,7 +4,7 @@ return { build = ":TSUpdate", config = function() require("nvim-treesitter.configs").setup({ - ensure_installed = { "lua", "python", "rust" }, + ensure_installed = { "vim", "vimdoc", "lua", "python", "rust" }, sync_install = false, highlight = { enable = true }, indent = { enable = true }, |