Skip to content

Commit

Permalink
feat(nvim): add nvim-webicons
Browse files Browse the repository at this point in the history
  • Loading branch information
mimikun committed Mar 2, 2025
1 parent 560736e commit 1b71475
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions dot_config/nvim/lua/plugins/nvim-webicons.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
---@type table
local opts = {
data = {
["🌺 flores"] = {
rosa = "🌹",
lirio = "🌸",
tulipan = "🌷",
},
["🌵 cactus"] = {
cactus1 = "🌵",
cactus2 = "🪴",
},
},
}

---@type LazySpec
local spec = {
"Hugo1974/nvim-webicons",
--lazy = false,
opts = opts,
cond = false,
enabled = false,
}

return spec

0 comments on commit 1b71475

Please sign in to comment.