diff options
author | Chris Patti <feoh@feoh.org> | 2023-10-10 11:31:33 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-10 11:31:33 -0400 |
commit | 58f2dbab7051804803a1da244eb54da0f77243e1 (patch) | |
tree | 5d99d6b4a680c90145b5e02f43dd0c60319531be /init.lua | |
parent | 9fe8b20f0373311ed8e75fea56995d2899de5abb (diff) | |
parent | 01ed2525bbff69756cd867673dea4dd9e54dfdee (diff) |
Merge pull request #452 from AshrafMichail23/fix_bash_errors
Fix Treesitter bash errors when editing README.md
Diffstat (limited to 'init.lua')
-rw-r--r-- | init.lua | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -333,7 +333,7 @@ vim.keymap.set('n', '<leader>sr', require('telescope.builtin').resume, { desc = vim.defer_fn(function() require('nvim-treesitter.configs').setup { -- Add languages to be installed here that you want installed for treesitter - ensure_installed = { 'c', 'cpp', 'go', 'lua', 'python', 'rust', 'tsx', 'javascript', 'typescript', 'vimdoc', 'vim' }, + ensure_installed = { 'c', 'cpp', 'go', 'lua', 'python', 'rust', 'tsx', 'javascript', 'typescript', 'vimdoc', 'vim', 'bash' }, -- Autoinstall languages that are not installed. Defaults to false (but you can change for yourself!) auto_install = false, |