initial commit

This commit is contained in:
aminnairi
2025-11-08 20:46:24 +01:00
parent 72670045f3
commit 722f9db961
64 changed files with 2281 additions and 0 deletions
@@ -0,0 +1,19 @@
return {
"ziontee113/icon-picker.nvim",
event = "VeryLazy",
config = function()
local iconPicker = require("icon-picker")
local whichKey = require("which-key")
iconPicker.setup({
disable_legacy_commands = true
})
whichKey.add({
{ "<leader>i", group = "Icon" },
{ "<leader>ie", function() vim.cmd("IconPickerInsert emoji") end, group = "Emoji" },
{ "<leader>is", function() vim.cmd("IconPickerInsert symbols") end, group = "Symbol" },
{ "<leader>in", function() vim.cmd("IconPickerInsert nerd_font") end, group = "Nerd Font Symbol" },
})
end
}