From 147f27d8f2b1d083a4ee3bc61f0b21157ab289fa Mon Sep 17 00:00:00 2001 From: Skladnayazebra Date: Sun, 2 Nov 2025 20:08:05 +0100 Subject: update fzf keybinds So they don't mess with new git binds --- nvim/lua/config/fzf.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'nvim/lua') diff --git a/nvim/lua/config/fzf.lua b/nvim/lua/config/fzf.lua index ef85a94..35e9c88 100644 --- a/nvim/lua/config/fzf.lua +++ b/nvim/lua/config/fzf.lua @@ -2,8 +2,8 @@ require('fzf-lua').setup({}) local opts = { silent = true } -vim.keymap.set('n', 'f', ':FzfLua global', opts) +vim.keymap.set('n', 'o', ':FzfLua global', opts) -- o means Open vim.keymap.set('n', 'r', ':FzfLua lsp_references', opts) -vim.keymap.set('n', 'g', ':FzfLua live_grep', opts) +vim.keymap.set('n', 'f', ':FzfLua live_grep', opts) -- f means Find vim.keymap.set('n', 'b', ':FzfLua buffers', opts) vim.keymap.set('n', '?', ':FzfLua keymaps', opts) -- cgit v1.3.1 From 310444ee9a4dfac0621ddda255a9ffc05a616d13 Mon Sep 17 00:00:00 2001 From: Skladnayazebra Date: Sun, 2 Nov 2025 21:43:57 +0100 Subject: Remove lazygit.nvim --- nvim/lua/config/lazy.lua | 1 - nvim/lua/config/lazygit.lua | 23 ----------------------- 2 files changed, 24 deletions(-) delete mode 100644 nvim/lua/config/lazygit.lua (limited to 'nvim/lua') diff --git a/nvim/lua/config/lazy.lua b/nvim/lua/config/lazy.lua index 913bacb..18fb522 100644 --- a/nvim/lua/config/lazy.lua +++ b/nvim/lua/config/lazy.lua @@ -58,7 +58,6 @@ require("lazy").setup({ opts = {}, }, { "prettier/vim-prettier" }, - require("config.lazygit"), require("config.blink-cmp"), }, install = { colorscheme = { "gruvbox" } }, diff --git a/nvim/lua/config/lazygit.lua b/nvim/lua/config/lazygit.lua deleted file mode 100644 index e1c548e..0000000 --- a/nvim/lua/config/lazygit.lua +++ /dev/null @@ -1,23 +0,0 @@ -vim.g.lazygit_floating_window_scaling_factor = 1 -vim.g.lazygit_floating_window_border_chars = {' ', ' ', ' ', ' ', ' ', ' ', ' ', ' '} - -return { - "kdheepak/lazygit.nvim", - lazy = true, - cmd = { - "LazyGit", - "LazyGitConfig", - "LazyGitCurrentFile", - "LazyGitFilter", - "LazyGitFilterCurrentFile", - }, - -- optional for floating window border decoration - dependencies = { - "nvim-lua/plenary.nvim", - }, - -- setting the keybinding for LazyGit with 'keys' is recommended in - -- order to load the plugin when the command is run for the first time - keys = { - { "lg", "LazyGit", desc = "LazyGit" } - } -} -- cgit v1.3.1