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