From ca791619cd88152cbec1d62d032744b70522827d Mon Sep 17 00:00:00 2001 From: Igor Date: Wed, 6 Dec 2023 21:08:52 -0300 Subject: [PATCH] fixup! refactor(dap)!: split dap and dap_ui --- doc/catppuccin.txt | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/doc/catppuccin.txt b/doc/catppuccin.txt index 7c520df1..d048da1c 100644 --- a/doc/catppuccin.txt +++ b/doc/catppuccin.txt @@ -617,19 +617,13 @@ 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 = ""}) @@ -637,6 +631,10 @@ Special ~ sign("DapLogPoint", { text = "◆", texthl = "DapLogPoint", linehl = "", numhl = ""}) < +nvim-dap-ui>lua + dap_ui = true +< + nvim-lspconfig>lua native_lsp = { enabled = true,