diff --git a/lua/plugins/icon-picker-nvim.lua b/lua/plugins/icon-picker-nvim.lua new file mode 100644 index 0000000..4f5f046 --- /dev/null +++ b/lua/plugins/icon-picker-nvim.lua @@ -0,0 +1,12 @@ +return { + "ziontee113/icon-picker.nvim", + config = function() + require("icon-picker").setup({ disable_legacy_commands = true }) + + local opts = { noremap = true, silent = true } + + vim.keymap.set("n", "i", "IconPickerNormal", opts) + vim.keymap.set("n", "y", "IconPickerYank", opts) --> Yank the selected icon into register + vim.keymap.set("i", "", "IconPickerInsert", opts) + end, +}