aboutsummaryrefslogtreecommitdiff
path: root/init.lua
diff options
context:
space:
mode:
authorAshraf Michail <user@noemail.com>2023-10-03 13:22:25 +0000
committerAshraf Michail <user@noemail.com>2023-10-08 00:25:27 +0000
commit01ed2525bbff69756cd867673dea4dd9e54dfdee (patch)
treee5cb9572c0d9854a1b169fb455a146b1b23d3f8a /init.lua
parent53e925240f57788138135a29c138aeecdcb5afd5 (diff)
Fix bash errors
Diffstat (limited to 'init.lua')
-rw-r--r--init.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/init.lua b/init.lua
index 11f55d0..ee1f390 100644
--- a/init.lua
+++ b/init.lua
@@ -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,