From e42208d5218a7ec5b3c81899036f1008896ac128 Mon Sep 17 00:00:00 2001 From: PlexSheep Date: Sun, 21 Jan 2024 01:56:44 +0100 Subject: [PATCH] icon picker --- lua/custom/plugins.lua | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/lua/custom/plugins.lua b/lua/custom/plugins.lua index b216061..3ff8a59 100644 --- a/lua/custom/plugins.lua +++ b/lua/custom/plugins.lua @@ -617,8 +617,8 @@ local plugins = { lazy = false, cmd = { "TSJJoin", "TSJSplit" }, keys = { - { "k", "TSJJoin" }, - { "S", "TSJSplit" }, + { "J", "TSJJoin" }, + { "S", "TSJSplit" }, }, }, { @@ -694,6 +694,17 @@ local plugins = { "hrsh7th/nvim-cmp", enabled = not vim.g.started_by_firenvim, }, + { + "ziontee113/icon-picker.nvim", + keys = { + { "", "IconPickerNormal", desc = "pick icon" }, + { "y", "IconPickerYank", desc = "yank icon" }, + }, + cmd = { "IconPickerInsert", "IconPickerYank", "IconPickerNormal" }, + config = function() + require("icon-picker").setup { disable_legacy_commands = true } + end, + }, } return plugins