From 8c3850af064882478ba5134e2a4f371fbab277cb Mon Sep 17 00:00:00 2001 From: PowerUser64 Date: Mon, 15 Aug 2022 14:39:58 -0700 Subject: [PATCH] nvim: add debugprint, delete ale (it was commented for a while) --- .config/nvim/lua/blake/plugins.lua | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.config/nvim/lua/blake/plugins.lua b/.config/nvim/lua/blake/plugins.lua index 9829981..ce0e5e4 100644 --- a/.config/nvim/lua/blake/plugins.lua +++ b/.config/nvim/lua/blake/plugins.lua @@ -176,13 +176,6 @@ return require('packer').startup({function() vim.cmd 'nnoremap so SymbolsOutline' 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 'jose-elias-alvarez/null-ls.nvim', requires = { 'nvim-lua/plenary.nvim' }, @@ -253,6 +246,13 @@ return require('packer').startup({function() require('blake.dap').dap_ui() 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 use { -- telescope: fuzzy finder for finding fuzzy things