diff options
| author | Richard Macklin <1863540+rmacklin@users.noreply.github.com> | 2024-05-05 18:01:39 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-05-05 21:01:39 -0400 |
| commit | 39834e3443046e9c64c47a1cb9cf7d16c21c2b34 (patch) | |
| tree | 4d8b66f230471f2cbf4218b687a252a0754bae5a /nvim | |
| parent | 3704c4855859bef58d2988823c7e895af004bc93 (diff) | |
| download | dots-39834e3443046e9c64c47a1cb9cf7d16c21c2b34.tar.gz | |
Add diff to treesitter's ensure_installed languages (#908)
Diffstat (limited to 'nvim')
| -rw-r--r-- | nvim/init.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nvim/init.lua b/nvim/init.lua index 457ad21..88658ef 100644 --- a/nvim/init.lua +++ b/nvim/init.lua @@ -835,7 +835,7 @@ require('lazy').setup({ 'nvim-treesitter/nvim-treesitter', build = ':TSUpdate', opts = { - ensure_installed = { 'bash', 'c', 'html', 'lua', 'luadoc', 'markdown', 'vim', 'vimdoc' }, + ensure_installed = { 'bash', 'c', 'diff', 'html', 'lua', 'luadoc', 'markdown', 'vim', 'vimdoc' }, -- Autoinstall languages that are not installed auto_install = true, highlight = { |