diff options
author | TJ DeVries <devries.timothyj@gmail.com> | 2024-07-17 21:37:31 -0400 |
---|---|---|
committer | TJ DeVries <devries.timothyj@gmail.com> | 2024-07-17 21:37:31 -0400 |
commit | 2df5137e59c28fc9148148db8ed4a9f7abf73b4f (patch) | |
tree | 519efe4546af407ccb3fe686b170230d9724373e | |
parent | 3e55ff1a83dc7a9813d8f2220cefd90b07aacdab (diff) |
fix: add required parsers from nvim-treesitter
-rw-r--r-- | init.lua | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -834,7 +834,7 @@ require('lazy').setup({ '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 = { |