From f7fe194b9bd7f9ae2c23a8d3899017c3e688d76b Mon Sep 17 00:00:00 2001 From: nullchilly Date: Sun, 17 Jul 2022 23:50:02 +0700 Subject: [PATCH] feat(integration): Add nvim-dap --- README.md | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 5bcf814..0082789 100644 --- a/README.md +++ b/README.md @@ -309,9 +309,16 @@ integration = { } ``` -- **Nvim-dap:** setting `enabled` to `true`, you need to override nvim-dap's default highlight groups, AFTER requiring nvim-dap: +- **Nvim-dap:** setting `enabled` to `true`: +```lua +dap = { + enabled = true, + enable_ui = true, +}, +``` ```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 = ""}) @@ -338,6 +345,7 @@ compile = { ``` By default catppuccin writes the compiled results into the system's cache directory. +Note: On windows we replace `/` with `\` by default #### Compile commands