mirror of
https://github.com/DefectingCat/nvim
synced 2025-07-16 01:01:34 +00:00
update dap icons
This commit is contained in:
@ -9,6 +9,14 @@ vim.g.markdown_recommended_style = 0
|
|||||||
-- Hide deprecation warnings
|
-- Hide deprecation warnings
|
||||||
vim.g.deprecation_warnings = false
|
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"
|
vim.o.cursorlineopt = "number,line"
|
||||||
|
|
||||||
opt.termguicolors = true
|
opt.termguicolors = true
|
||||||
|
@ -11,7 +11,11 @@ if not vim.loop.fs_stat(lazypath) then
|
|||||||
end
|
end
|
||||||
vim.opt.rtp:prepend(lazypath)
|
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 = {
|
checker = {
|
||||||
enabled = true,
|
enabled = true,
|
||||||
notify = false,
|
notify = false,
|
||||||
|
Reference in New Issue
Block a user