✨ feat(nvim): added icon-picker extra and deleted cmp icons and emojis
This commit is contained in:
parent
de065586e3
commit
77280545b9
3 changed files with 21 additions and 6 deletions
|
@ -88,6 +88,7 @@
|
|||
"plugins.extras.ui.zen-mode",
|
||||
"plugins.extras.util.bigfile",
|
||||
"plugins.extras.util.discordrcp",
|
||||
"plugins.extras.util.icon-picker",
|
||||
"plugins.extras.util.vim-be-good",
|
||||
"plugins.extras.util.wakatime"
|
||||
],
|
||||
|
|
|
@ -10,15 +10,9 @@ return {
|
|||
{
|
||||
"amarakon/nvim-cmp-fonts",
|
||||
},
|
||||
{
|
||||
"hrsh7th/cmp-emoji",
|
||||
},
|
||||
{
|
||||
"lukas-reineke/cmp-under-comparator",
|
||||
},
|
||||
{
|
||||
"chrisgrieser/cmp-nerdfont",
|
||||
},
|
||||
{
|
||||
"lukas-reineke/cmp-rg",
|
||||
},
|
||||
|
|
20
.config/nvim/lua/plugins/extras/util/icon-picker.lua
Normal file
20
.config/nvim/lua/plugins/extras/util/icon-picker.lua
Normal file
|
@ -0,0 +1,20 @@
|
|||
return {
|
||||
"ziontee113/icon-picker.nvim",
|
||||
dependencies = { "stevearc/dressing.nvim" },
|
||||
opts = {
|
||||
disable_legacy_commands = true,
|
||||
},
|
||||
keys = {
|
||||
{
|
||||
"<leader>sI",
|
||||
"<cmd>IconPickerNormal<cr>",
|
||||
desc = "Icons",
|
||||
},
|
||||
{
|
||||
"<C-i>",
|
||||
"<cmd>IconPickerInsert<cr>",
|
||||
mode = { "i" },
|
||||
desc = "Insert Icon",
|
||||
},
|
||||
},
|
||||
}
|
Loading…
Add table
Reference in a new issue