From c43cfedb3b3f2009fab22db6b23d3a0064b7b32f Mon Sep 17 00:00:00 2001 From: voidarc Date: Thu, 19 Feb 2026 12:20:47 +0000 Subject: [PATCH] added symbol inserter --- lua/plugins/functional/nerdy.lua | 9 +++++++++ lua/plugins/functional/telescope.lua | 7 ++++++- 2 files changed, 15 insertions(+), 1 deletion(-) create mode 100644 lua/plugins/functional/nerdy.lua diff --git a/lua/plugins/functional/nerdy.lua b/lua/plugins/functional/nerdy.lua new file mode 100644 index 0000000..134102e --- /dev/null +++ b/lua/plugins/functional/nerdy.lua @@ -0,0 +1,9 @@ +return { + '2kabhishek/nerdy.nvim', + cmd = 'Nerdy', + opts = { + max_recents = 30, -- Configure recent icons limit + copy_to_clipboard = false, -- Copy glyph to clipboard instead of inserting + copy_register = '+', -- Register to use for copying (if `copy_to_clipboard` is true) + }, +} diff --git a/lua/plugins/functional/telescope.lua b/lua/plugins/functional/telescope.lua index 48e95a1..a73072f 100644 --- a/lua/plugins/functional/telescope.lua +++ b/lua/plugins/functional/telescope.lua @@ -1,7 +1,11 @@ return { "nvim-telescope/telescope.nvim", tag = "0.1.8", - dependencies = { "nvim-lua/plenary.nvim", { "nvim-telescope/telescope-fzf-native.nvim", build = "make" } }, + dependencies = { + "nvim-lua/plenary.nvim", + "nvim-telescope/telescope-symbols.nvim", + { "nvim-telescope/telescope-fzf-native.nvim", build = "make" }, + }, config = function() require("telescope").setup({ defaults = { @@ -51,5 +55,6 @@ return { require("telescope").load_extension("file_browser") require("telescope").load_extension("ui-select") + require("telescope").load_extension("nerdy") end, }