Add nvimgdb
This commit is contained in:
parent
7348015d45
commit
c33851ef01
1 changed files with 18 additions and 0 deletions
|
@ -21,6 +21,24 @@ return {
|
||||||
end
|
end
|
||||||
},
|
},
|
||||||
|
|
||||||
|
{
|
||||||
|
"sakhnik/nvim-gdb",
|
||||||
|
config = function()
|
||||||
|
vim.api.nvim_create_autocmd("FileType", {
|
||||||
|
pattern = "nvimgdb",
|
||||||
|
callback = function()
|
||||||
|
vim.opt.number = false
|
||||||
|
vim.opt.relativenumber = false
|
||||||
|
vim.opt.signcolumn = 'no'
|
||||||
|
|
||||||
|
vim.api.nvim_create_autocmd({"BufEnter", "BufWinEnter"}, {
|
||||||
|
command = "startinsert"
|
||||||
|
})
|
||||||
|
end
|
||||||
|
})
|
||||||
|
end
|
||||||
|
},
|
||||||
|
|
||||||
{ "abecodes/tabout.nvim", dependencies = { "nvim-treesitter" }, config = true },
|
{ "abecodes/tabout.nvim", dependencies = { "nvim-treesitter" }, config = true },
|
||||||
|
|
||||||
{ "numToStr/Comment.nvim", config = true },
|
{ "numToStr/Comment.nvim", config = true },
|
||||||
|
|
Loading…
Reference in a new issue