nvim: fix for virtual text

This commit is contained in:
PowerUser64 2021-11-20 17:09:28 -08:00
parent 401aaf30fa
commit 06d0f06402

View file

@ -104,7 +104,7 @@ return require('packer').startup(function()
use { -- virtual-text: Print Variable names while debugging
'theHamsta/nvim-dap-virtual-text',
config = function()
require('blake.dap').dap_vtext()
require("nvim-dap-virtual-text").setup()
end
}
use { -- a UI for nvim-dap (easy access to info)
@ -155,10 +155,9 @@ return require('packer').startup(function()
}
-- Conveniences
use {
use { -- Web browser integration
'raghur/vim-ghost',
config = function()
-- Genereate ctags
config = function() -- Map :GS to :GhostStart
vim.cmd 'command! GS GhostStart'
end
}
@ -181,7 +180,7 @@ return require('packer').startup(function()
use { -- cheat.sh integration
'dbeniamine/cheat.sh-vim',
}
use { -- comments (gb and gc)
use { -- Comments (gb and gc)
'numToStr/Comment.nvim',
config = function()
require('Comment').setup()