diff options
author | Damjan 9000 <damjan.9000@gmail.com> | 2024-07-22 20:25:55 +0200 |
---|---|---|
committer | Damjan 9000 <damjan.9000@gmail.com> | 2024-07-22 20:25:55 +0200 |
commit | e1d6094136efb6f0c1f5a9f303fb8cbbe32b5976 (patch) | |
tree | 76ca861005d8c361e86696cd7cc0870fb5cd2178 /lua/kickstart/plugins/treesitter.lua | |
parent | a6442e80813b40238066676b7ac97951c1bd1822 (diff) | |
parent | 56b9114bf29cdc0c0f5de78b5deae1fe0ab65db1 (diff) |
Merge 'upstream' Neovim 0.10 updates and more
Merged commits from upstream:
Update comment about the toggle inlay hints keymap
lint: fix lsp warning in `vim.lsp.inlay_hint.is_enabled`
Update lazydev config to fix "Undefined field `fs_stat`" LSP error
Neovim 0.10 updates
Fix comment about mini.ai example
Make conform.nvim be lazy-loadable again
Update README.md | %userprofile%\appdata\local -> %localappdata%
Make debug lazy loadable
Remove redundant require
Fix neo-tree keymap description
fix: add required parsers from nvim-treesitter
Diffstat (limited to 'lua/kickstart/plugins/treesitter.lua')
-rw-r--r-- | lua/kickstart/plugins/treesitter.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/kickstart/plugins/treesitter.lua b/lua/kickstart/plugins/treesitter.lua index 3e67507..4db3b2c 100644 --- a/lua/kickstart/plugins/treesitter.lua +++ b/lua/kickstart/plugins/treesitter.lua @@ -3,7 +3,7 @@ return { 'nvim-treesitter/nvim-treesitter', build = ':TSUpdate', opts = { - ensure_installed = { 'bash', 'c', 'diff', 'html', 'lua', 'luadoc', 'markdown', 'vim', 'vimdoc' }, + ensure_installed = { 'bash', 'c', 'diff', 'html', 'lua', 'luadoc', 'markdown', 'markdown_inline', 'query', 'vim', 'vimdoc' }, -- Autoinstall languages that are not installed auto_install = true, highlight = { |