From bcbdbef3feda784e6cca7f5b5ce43131bf14f928 Mon Sep 17 00:00:00 2001 From: Micah Halter Date: Tue, 22 Feb 2022 12:02:16 -0500 Subject: [PATCH] Added symbols-outline highlighting Signed-off-by: Micah Halter --- README.md | 2 ++ lua/catppuccin/config.lua | 1 + lua/catppuccin/core/integrations/symbols_outline.lua | 9 +++++++++ 3 files changed, 12 insertions(+) create mode 100644 lua/catppuccin/core/integrations/symbols_outline.lua diff --git a/README.md b/README.md index bab5eee..93ce6cc 100644 --- a/README.md +++ b/README.md @@ -50,6 +50,7 @@ This port of Catppuccin is special because it was the first one and the one that - [Neogit](https://github.com/TimUntersberger/neogit) - [Telekasten](https://github.com/renerocksai/telekasten.nvim) - [Notify](https://github.com/rcarriga/nvim-notify) + - [Symbols-Outline](https://github.com/simrat39/symbols-outline.nvim) ## Usage @@ -140,6 +141,7 @@ integrations = { hop = false, notify = true, telekasten = true, + symbols_outline = true, } ``` diff --git a/lua/catppuccin/config.lua b/lua/catppuccin/config.lua index ea0f36e..306a043 100644 --- a/lua/catppuccin/config.lua +++ b/lua/catppuccin/config.lua @@ -61,6 +61,7 @@ config.options = { hop = false, notify = true, telekasten = true, + symbols_outline = true, }, } diff --git a/lua/catppuccin/core/integrations/symbols_outline.lua b/lua/catppuccin/core/integrations/symbols_outline.lua new file mode 100644 index 0000000..4c7be56 --- /dev/null +++ b/lua/catppuccin/core/integrations/symbols_outline.lua @@ -0,0 +1,9 @@ +local M = {} + +function M.get(cp) + return { + FocusedSymbol = { fg = cp.lavender, bg = cp.black2 }, + } +end + +return M