From 4439691030d1a28f4ad49c542104e3f880f7c183 Mon Sep 17 00:00:00 2001 From: xinyangli Date: Thu, 26 Dec 2024 21:31:42 +0800 Subject: [PATCH] harpoon,gitsigns: update keybindings, space as leader key --- config/gitsigns.nix | 22 +++++++++++---- config/harpoon.nix | 63 ++++++++++-------------------------------- config/keybindings.nix | 1 + 3 files changed, 32 insertions(+), 54 deletions(-) diff --git a/config/gitsigns.nix b/config/gitsigns.nix index f406bdb..af5584b 100644 --- a/config/gitsigns.nix +++ b/config/gitsigns.nix @@ -9,7 +9,7 @@ # Navigate through hunks { mode = [ "n" ]; - key = "]c"; + key = "]h"; action = helpers.mkRaw '' function() if vim.wo.diff then @@ -23,7 +23,7 @@ } { mode = [ "n" ]; - key = "[c"; + key = "[h"; action = helpers.mkRaw '' function() if vim.wo.diff then @@ -35,8 +35,18 @@ ''; } { - mode = [ "v" ]; - key = "hs"; + mode = [ "n" ]; + key = "gs"; + action = helpers.mkRaw '' + require("gitsigns").stage_buffer + ''; + options = { + desc = "Stage Buffer"; + }; + } + { + mode = [ "n" ]; + key = "gsh"; action = helpers.mkRaw '' function() require("gitsigns").stage_hunk({ vim.fn.line("."), vim.fn.line("v") }) @@ -48,7 +58,7 @@ } { mode = [ "n" ]; - key = "hu"; + key = "gshd"; action = helpers.mkRaw '' require("gitsigns").undo_stage_hunk ''; @@ -58,7 +68,7 @@ } { mode = [ "n" ]; - key = "hp"; + key = "gp"; action = helpers.mkRaw '' require("gitsigns").preview_hunk ''; diff --git a/config/harpoon.nix b/config/harpoon.nix index fcefc8d..6eb71b4 100644 --- a/config/harpoon.nix +++ b/config/harpoon.nix @@ -1,53 +1,20 @@ -{ pkgs, ... }: +{ pkgs, helpers, ... }: { - # keymaps for this plugin are difined in config/keymaps/window-movements module + plugins.harpoon = { + enable = true; + enableTelescope = true; + keymaps = { + navFile = { + "1" = "h1"; + "2" = "h2"; + "3" = "h3"; + "4" = "h4"; + }; + addFile = "ha"; + cmdToggleQuickMenu = "he"; + }; + }; extraPlugins = with pkgs.vimPlugins; [ harpoon2 ]; - extraConfigLua = '' - local harpoon = require("harpoon") - harpoon:setup( - { - settings = { - save_on_toggle = true, - sync_on_ui_close = true, - key = function() - return vim.loop.cwd() - end, - }, - } - ) - - -- basic telescope configuration - -- local conf = require("telescope.config").values - -- local function toggle_telescope(harpoon_files) - -- local file_paths = {} - -- for _, item in ipairs(harpoon_files.items) do - -- table.insert(file_paths, item.value) - -- end - -- - -- require("telescope.pickers").new({}, { - -- prompt_title = "Harpoon", - -- finder = require("telescope.finders").new_table({ - -- results = file_paths, - -- }), - -- previewer = conf.file_previewer({}), - -- sorter = conf.generic_sorter({}), - -- layout_strategy = getLayoutStrategy() - -- }):find() - -- end - -- - -- vim.keymap.set("n", "", function() toggle_telescope(harpoon:list()) end, - -- { desc = "Open harpoon window" }) - vim.keymap.set("n", "", function() harpoon.ui:toggle_quick_menu(harpoon:list()) end) - vim.keymap.set("n", "a", function() harpoon:list():add() end) - - vim.keymap.set("n", "", function() harpoon:list():select(1) end) - vim.keymap.set("n", "", function() harpoon:list():select(2) end) - vim.keymap.set("n", "", function() harpoon:list():select(3) end) - vim.keymap.set("n", "", function() harpoon:list():select(4) end) - -- Toggle previous & next buffers stored within Harpoon list - vim.keymap.set("n", "", function() harpoon:list():prev() end) - vim.keymap.set("n", "", function() harpoon:list():next() end) - ''; } diff --git a/config/keybindings.nix b/config/keybindings.nix index cdd86f8..5658111 100644 --- a/config/keybindings.nix +++ b/config/keybindings.nix @@ -1,5 +1,6 @@ { helpers, ... }: { + globals.mapleader = " "; keymaps = [ # Window movement. {