Skip to content

Commit

Permalink
fix(nvim-navic): use kinds icons for navic. Fixes #164
Browse files Browse the repository at this point in the history
  • Loading branch information
folke committed Feb 2, 2023
1 parent 1aa9e26 commit b81ecf9
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion lua/lazyvim/plugins/ui.lua
Expand Up @@ -284,7 +284,14 @@ return {
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
Expand Down

0 comments on commit b81ecf9

Please sign in to comment.