rework cmp, dap and some refactoring
This commit is contained in:
parent
3246e55fd0
commit
3922b7b713
15 changed files with 264 additions and 165 deletions
.config/nvim/lua/plugins/dap
|
@ -1,24 +1,5 @@
|
|||
local M = { "mfussenegger/nvim-dap" }
|
||||
|
||||
M.dependencies = {
|
||||
"mason-nvim-dap.nvim",
|
||||
"nvim-dap-ui",
|
||||
}
|
||||
|
||||
M.event = { "BufReadPost", "BufNewFile" }
|
||||
|
||||
M.config = function()
|
||||
local icons = require('config.icons')
|
||||
vim.api.nvim_set_hl(0, "DapStoppedLine", { default = true, link = "Visual" })
|
||||
vim.fn.sign_define(
|
||||
"DapBreakpoint",
|
||||
{
|
||||
text = icons.Bug,
|
||||
texthl = "DiagnosticSignError",
|
||||
linehl = "",
|
||||
numhl = "",
|
||||
}
|
||||
)
|
||||
end
|
||||
|
||||
return M
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue