From 1c0a33b031b408e346f26c0f6f43ccf3e4f0ae7e Mon Sep 17 00:00:00 2001 From: nullchilly Date: Mon, 18 Jul 2022 00:04:16 +0700 Subject: [PATCH] chore(readme): Formatting --- README.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 0082789..19be789 100644 --- a/README.md +++ b/README.md @@ -39,7 +39,8 @@ This port of Catppuccin is special because it was the first one and the one that - [BarBar](https://github.com/romgrk/barbar.nvim) - [NvimTree](https://github.com/kyazdani42/nvim-tree.lua) - [Neo-tree](https://github.com/nvim-neo-tree/neo-tree.nvim) - - [Nvim-dap](https://github.com/mfussenegger/nvim-dap) and [Nvim-dap-ui](https://github.com/rcarriga/nvim-dap-ui) + - [Nvim-dap](https://github.com/mfussenegger/nvim-dap) + - [Nvim-dap-ui](https://github.com/rcarriga/nvim-dap-ui) - [Git Gutter](https://github.com/airblade/vim-gitgutter) - [Fern](https://github.com/lambdalisue/fern.vim) - [Lightline](https://github.com/itchyny/lightline.vim) @@ -320,7 +321,9 @@ dap = { ```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 = ""}) @@ -543,7 +546,7 @@ require("catppuccin.lib.highlight").syntax({ ``` Note: Unlike the `:highlight` command which can update a highlight group, this function completely replaces the definition. (`:h nvim_set_hl`) -However, if you wish to use the old highlight (slower): +However, if you wish to use the old highlight api (slower): ```lua local function syntax(tbl)