nvim: fix for virtual text
This commit is contained in:
parent
401aaf30fa
commit
06d0f06402
1 changed files with 4 additions and 5 deletions
|
@ -104,7 +104,7 @@ return require('packer').startup(function()
|
||||||
use { -- virtual-text: Print Variable names while debugging
|
use { -- virtual-text: Print Variable names while debugging
|
||||||
'theHamsta/nvim-dap-virtual-text',
|
'theHamsta/nvim-dap-virtual-text',
|
||||||
config = function()
|
config = function()
|
||||||
require('blake.dap').dap_vtext()
|
require("nvim-dap-virtual-text").setup()
|
||||||
end
|
end
|
||||||
}
|
}
|
||||||
use { -- a UI for nvim-dap (easy access to info)
|
use { -- a UI for nvim-dap (easy access to info)
|
||||||
|
@ -155,10 +155,9 @@ return require('packer').startup(function()
|
||||||
}
|
}
|
||||||
|
|
||||||
-- Conveniences
|
-- Conveniences
|
||||||
use {
|
use { -- Web browser integration
|
||||||
'raghur/vim-ghost',
|
'raghur/vim-ghost',
|
||||||
config = function()
|
config = function() -- Map :GS to :GhostStart
|
||||||
-- Genereate ctags
|
|
||||||
vim.cmd 'command! GS GhostStart'
|
vim.cmd 'command! GS GhostStart'
|
||||||
end
|
end
|
||||||
}
|
}
|
||||||
|
@ -181,7 +180,7 @@ return require('packer').startup(function()
|
||||||
use { -- cheat.sh integration
|
use { -- cheat.sh integration
|
||||||
'dbeniamine/cheat.sh-vim',
|
'dbeniamine/cheat.sh-vim',
|
||||||
}
|
}
|
||||||
use { -- comments (gb and gc)
|
use { -- Comments (gb and gc)
|
||||||
'numToStr/Comment.nvim',
|
'numToStr/Comment.nvim',
|
||||||
config = function()
|
config = function()
|
||||||
require('Comment').setup()
|
require('Comment').setup()
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue