Skip to content

Commit

Permalink
fixup! refactor(dap)!: split dap and dap_ui
Browse files Browse the repository at this point in the history
  • Loading branch information
igorlfs committed Dec 7, 2023
1 parent ad25404 commit ca79161
Showing 1 changed file with 6 additions and 8 deletions.
14 changes: 6 additions & 8 deletions doc/catppuccin.txt
Original file line number Diff line number Diff line change
Expand Up @@ -617,26 +617,24 @@ nvim-cmp>lua
cmp = true
<

nvim-dap & nvim-dap-ui>lua
dap = {
enabled = true,
enable_ui = true, -- enable nvim-dap-ui
}
nvim-dap>lua
dap = true
<

Special ~

>lua
-- You NEED to override nvim-dap's default highlight groups, AFTER requiring nvim-dap
require("dap")

local sign = vim.fn.sign_define

sign("DapBreakpoint", { text = "●", texthl = "DapBreakpoint", linehl = "", numhl = ""})
sign("DapBreakpointCondition", { text = "●", texthl = "DapBreakpointCondition", linehl = "", numhl = ""})
sign("DapLogPoint", { text = "◆", texthl = "DapLogPoint", linehl = "", numhl = ""})
<

nvim-dap-ui>lua
dap_ui = true
<

nvim-lspconfig>lua
native_lsp = {
enabled = true,
Expand Down

0 comments on commit ca79161

Please sign in to comment.