nvim: add debugprint, delete ale (it was commented for a while)
This commit is contained in:
parent
fc5454904b
commit
8c3850af06
1 changed files with 7 additions and 7 deletions
|
@ -176,13 +176,6 @@ 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
|
|
||||||
-- 'dense-analysis/ale',
|
|
||||||
-- ft = {'sh', 'zsh', 'zshrc', 'bashrc', 'bash'},
|
|
||||||
-- config = function()
|
|
||||||
-- vim.g.ale_disable_lsp = 1
|
|
||||||
-- end
|
|
||||||
-- }
|
|
||||||
use { -- null-ls: Support for lots of programming tools, but through nvim lsp
|
use { -- null-ls: Support for lots of programming tools, but through nvim lsp
|
||||||
'jose-elias-alvarez/null-ls.nvim',
|
'jose-elias-alvarez/null-ls.nvim',
|
||||||
requires = { 'nvim-lua/plenary.nvim' },
|
requires = { 'nvim-lua/plenary.nvim' },
|
||||||
|
@ -253,6 +246,13 @@ return require('packer').startup({function()
|
||||||
require('blake.dap').dap_ui()
|
require('blake.dap').dap_ui()
|
||||||
end,
|
end,
|
||||||
}
|
}
|
||||||
|
use { -- debugprint: automatic debug print statement creator - bind g?{p/P,v/V,o/O}
|
||||||
|
'andrewferrier/debugprint.nvim',
|
||||||
|
requires = { 'nvim-treesitter/nvim-treesitter' },
|
||||||
|
config = function()
|
||||||
|
require('debugprint').setup()
|
||||||
|
end
|
||||||
|
}
|
||||||
|
|
||||||
---- Other IDE features
|
---- Other IDE features
|
||||||
use { -- telescope: fuzzy finder for finding fuzzy things
|
use { -- telescope: fuzzy finder for finding fuzzy things
|
||||||
|
|
Loading…
Add table
Reference in a new issue