mirror of
https://github.com/LazyVim/LazyVim.git
synced 2025-06-28 19:50:09 +02:00
fix(nvim-navic): use kinds icons for navic. Fixes #164
This commit is contained in:
parent
1aa9e26e84
commit
b81ecf9f7a
1 changed files with 8 additions and 1 deletions
|
@ -284,7 +284,14 @@ return {
|
||||||
end
|
end
|
||||||
end)
|
end)
|
||||||
end,
|
end,
|
||||||
opts = { separator = " ", highlight = true, depth_limit = 5 },
|
opts = function()
|
||||||
|
return {
|
||||||
|
separator = " ",
|
||||||
|
highlight = true,
|
||||||
|
depth_limit = 5,
|
||||||
|
icons = require("lazyvim.config").icons.kinds,
|
||||||
|
}
|
||||||
|
end,
|
||||||
},
|
},
|
||||||
|
|
||||||
-- icons
|
-- icons
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue