mirror of
https://github.com/DefectingCat/dotfiles
synced 2025-07-15 16:51:36 +00:00
13 lines
560 B
Lua
13 lines
560 B
Lua
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" }
|
|
)
|
|
|
|
require "custom.utils.autocmd"
|
|
require "custom.utils.usercmd"
|
|
require "custom.utils.options"
|
|
require "custom.utils.neovide"
|