update dap icons

This commit is contained in:
xfy
2024-09-13 17:36:28 +08:00
parent 9b9814cae0
commit f72d95d9cd
2 changed files with 13 additions and 1 deletions

View File

@ -9,6 +9,14 @@ vim.g.markdown_recommended_style = 0
-- Hide deprecation warnings
vim.g.deprecation_warnings = false
vim.fn.sign_define("DapBreakpoint", { text = "", numhl = "DapBreakpoint", texthl = "DapBreakpoint" })
vim.fn.sign_define("DagLogPoint", { text = "", numhl = "DapLogPoint", texthl = "DapLogPoint" })
vim.fn.sign_define("DapStopped", { text = "", numhl = "DapStopped", texthl = "DapStopped" })
vim.fn.sign_define(
"DapBreakpointRejected",
{ text = "", numhl = "DapBreakpointRejected", texthl = "DapBreakpointRejected" }
)
vim.o.cursorlineopt = "number,line"
opt.termguicolors = true

View File

@ -11,7 +11,11 @@ if not vim.loop.fs_stat(lazypath) then
end
vim.opt.rtp:prepend(lazypath)
require("lazy").setup({ { import = "rua.plugins" }, { import = "rua.plugins.lsp" }, { import = "rua.plugins.lang" } }, {
require("lazy").setup({
{ import = "rua.plugins" },
{ import = "rua.plugins.lsp" },
{ import = "rua.plugins.lang" },
}, {
checker = {
enabled = true,
notify = false,