Files
nvim/lua/myinit.lua
2024-08-22 17:03:57 +08:00

14 lines
552 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" }
)
--[[ vim.cmd.colorscheme("catppuccin") ]]
require("utils.autocmd")
require("utils.usercmd")
require("utils.neovide")