nvim: bash lsp has shellcheck! I don't need ale any more.

This commit is contained in:
PowerUser64 2022-05-15 00:43:47 -07:00
parent 2abe191f35
commit 5ba64363f8

View file

@ -137,13 +137,13 @@ return require('packer').startup({function()
vim.cmd 'nnoremap <Leader>so <cmd>SymbolsOutline<CR>' vim.cmd 'nnoremap <Leader>so <cmd>SymbolsOutline<CR>'
end, end,
} }
use { -- ALE: Support for lots of linters, etc -- use { -- ALE: Support for lots of linters, etc
'dense-analysis/ale', -- 'dense-analysis/ale',
ft = {'sh', 'zsh', 'zshrc', 'bashrc', 'bash'}, -- ft = {'sh', 'zsh', 'zshrc', 'bashrc', 'bash'},
config = function() -- config = function()
vim.g.ale_disable_lsp = 1 -- vim.g.ale_disable_lsp = 1
end -- end
} -- }
---- DAP (Debug Adapter Protocol) ---- DAP (Debug Adapter Protocol)
use { -- nvim-dap: DAP support use { -- nvim-dap: DAP support
'mfussenegger/nvim-dap', 'mfussenegger/nvim-dap',