mirror of
https://github.com/DefectingCat/nvim
synced 2025-07-15 16:51:33 +00:00
update dap icons
This commit is contained in:
@ -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
|
||||
|
@ -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,
|
||||
|
Reference in New Issue
Block a user