mirror of
https://github.com/NotAShelf/neovim-flake.git
synced 2024-11-09 22:55:58 +01:00
feat: enable navic integration for catppuccin theme
This commit is contained in:
parent
e1f0270643
commit
9c3e82b41b
2 changed files with 9 additions and 1 deletions
|
@ -60,7 +60,11 @@
|
||||||
markdown = true,
|
markdown = true,
|
||||||
noice = true,
|
noice = true,
|
||||||
notify = true, -- nvim-notify
|
notify = true, -- nvim-notify
|
||||||
which_key = true
|
which_key = true,
|
||||||
|
navic = {
|
||||||
|
enabled = false,
|
||||||
|
custom_bg = "NONE", -- "lualine" will set background to mantle
|
||||||
|
},
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
-- setup must be called before loading
|
-- setup must be called before loading
|
||||||
|
|
|
@ -31,6 +31,10 @@ in {
|
||||||
local navic = require("nvim-navic")
|
local navic = require("nvim-navic")
|
||||||
local actions = require("nvim-navbuddy.actions")
|
local actions = require("nvim-navbuddy.actions")
|
||||||
|
|
||||||
|
require("nvim-navic").setup {
|
||||||
|
highlight = true
|
||||||
|
}
|
||||||
|
|
||||||
-- TODO: wrap this in an optional string with navbuddy as the enable condition
|
-- TODO: wrap this in an optional string with navbuddy as the enable condition
|
||||||
navbuddy.setup {
|
navbuddy.setup {
|
||||||
window = {
|
window = {
|
||||||
|
|
Loading…
Reference in a new issue