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>'
end,
}
use { -- ALE: Support for lots of linters, etc
'dense-analysis/ale',
ft = {'sh', 'zsh', 'zshrc', 'bashrc', 'bash'},
config = function()
vim.g.ale_disable_lsp = 1
end
}
-- use { -- ALE: Support for lots of linters, etc
-- 'dense-analysis/ale',
-- ft = {'sh', 'zsh', 'zshrc', 'bashrc', 'bash'},
-- config = function()
-- vim.g.ale_disable_lsp = 1
-- end
-- }
---- DAP (Debug Adapter Protocol)
use { -- nvim-dap: DAP support
'mfussenegger/nvim-dap',