Merge pull request #109 from mehalter/SymbolOutline

dev
Pocco81 3 years ago committed by GitHub
commit f079dda3dc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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.yellow, bg = cp.black2 },
}
end
return M
Loading…
Cancel
Save