Added symbols-outline highlighting

Signed-off-by: Micah Halter <micah@balena.io>
dev
Micah Halter 3 years ago
parent 24aba39629
commit bcbdbef3fe
No known key found for this signature in database
GPG Key ID: 91C3B7AA970B3213

@ -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,
}
```

@ -61,6 +61,7 @@ config.options = {
hop = false,
notify = true,
telekasten = true,
symbols_outline = true,
},
}

@ -0,0 +1,9 @@
local M = {}
function M.get(cp)
return {
FocusedSymbol = { fg = cp.lavender, bg = cp.black2 },
}
end
return M
Loading…
Cancel
Save