From: Alexander Goussas Date: Tue, 15 Jul 2025 22:59:10 +0000 (-0500) Subject: nvim: remove telescope find-exe extension X-Git-Url: http://git.frustrated-labs.net/?a=commitdiff_plain;h=31818f22998e8c6dc010999db82d1c6ff4daaf1b;p=dotfiles.git nvim: remove telescope find-exe extension --- diff --git a/kitty/.config/kitty/kitty.conf b/kitty/.config/kitty/kitty.conf index 21e559b..46a84dc 100644 --- a/kitty/.config/kitty/kitty.conf +++ b/kitty/.config/kitty/kitty.conf @@ -30,6 +30,6 @@ bold_italic_font auto # END_KITTY_FONTS # BEGIN_KITTY_THEME -# Atom One Light +# Alabaster include current-theme.conf # END_KITTY_THEME diff --git a/nvim/.config/nvim/lua/plugins/telescope.lua b/nvim/.config/nvim/lua/plugins/telescope.lua index 5fa92c7..3889209 100644 --- a/nvim/.config/nvim/lua/plugins/telescope.lua +++ b/nvim/.config/nvim/lua/plugins/telescope.lua @@ -5,7 +5,7 @@ return { branch = '0.1.x', dependencies = { 'nvim-lua/plenary.nvim', - { dir = '~/Code/telescope-find-exe.nvim/' } + -- { dir = '~/Code/telescope-find-exe.nvim/' } }, config = function() local telescope = require('telescope') @@ -30,7 +30,7 @@ return { telescope.load_extension('grey') telescope.load_extension("workspaces") - telescope.load_extension('find_exe') + -- telescope.load_extension('find_exe') end }, }