diff options
| author | Ashraf Michail <user@noemail.com> | 2023-10-03 13:22:25 +0000 |
|---|---|---|
| committer | Ashraf Michail <user@noemail.com> | 2023-10-08 00:25:27 +0000 |
| commit | 754dbc5dc17c5899a3643789524ae78a58a29d8b (patch) | |
| tree | d8fd5098f7e715e67d7fd9254f8c01fd97421d85 /nvim | |
| parent | 267335edf51bb04dbc07d0343d489c7a769cf6dc (diff) | |
| download | dots-754dbc5dc17c5899a3643789524ae78a58a29d8b.tar.gz | |
Fix bash errors
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 11f55d0..ee1f390 100644 --- a/nvim/init.lua +++ b/nvim/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, |