nvim: native debug -> nvim-gdb

This commit is contained in:
mequidis
2022-06-25 22:25:17 +03:00
parent cd5ee61410
commit ec8e63658d
7 changed files with 58 additions and 73 deletions

View File

@ -2,7 +2,7 @@ require("packer").startup(function()
use("wbthomason/packer.nvim")
--
-- LSP
-- dev
--
-- lspconfig
@ -23,10 +23,6 @@ require("packer").startup(function()
end,
})
--
-- completion
--
-- cmp
use({
"hrsh7th/nvim-cmp",
@ -35,22 +31,10 @@ require("packer").startup(function()
require("plugins.cmp")
end,
})
use({
"hrsh7th/cmp-nvim-lsp",
after = "nvim-cmp",
})
use({
"hrsh7th/cmp-vsnip",
after = "nvim-cmp",
})
use({
"hrsh7th/cmp-buffer",
after = "nvim-cmp",
})
use({
"hrsh7th/cmp-path",
after = "nvim-cmp",
})
use({ "hrsh7th/cmp-nvim-lsp", after = "nvim-cmp" })
use({ "hrsh7th/cmp-vsnip", after = "nvim-cmp" })
use({ "hrsh7th/cmp-buffer", after = "nvim-cmp" })
use({ "hrsh7th/cmp-path", after = "nvim-cmp" })
-- snippets
use({
@ -110,6 +94,14 @@ require("packer").startup(function()
end,
})
use({
"sakhnik/nvim-gdb",
event = "BufEnter",
config = function()
require("plugins.gdb")
end,
})
-- comment.nvim
use({
"numToStr/Comment.nvim",
@ -230,7 +222,7 @@ require("packer").startup(function()
use({
"nvim-orgmode/orgmode",
after = 'nvim-treesitter',
after = "nvim-treesitter",
config = function()
require("plugins.orgmode")
end,