From a4fb59d193d49c545aad308e61a92ba6aa331f2c Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Sun, 17 Dec 2023 20:25:25 +0000 Subject: [PATCH] Display Harpoon window at the top of the screen --- CHANGELOG.md | 7 +++++++ config/neovim/after/plugin/fugitive.lua | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 98affc4..817bb2a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,13 @@ The format is based on [Keep a Changelog](https://keepachangelog.com), but adapt Instead of grouping changes by tag, they are grouped by the date they are released. +## 17th December 2023 + +### Changed + +* Open Harpoon window at the top of the screen. +* Manage `ripgrep` with Home Manager. + ## 15th December 2023 ### Added diff --git a/config/neovim/after/plugin/fugitive.lua b/config/neovim/after/plugin/fugitive.lua index 151d722..a80d0b1 100644 --- a/config/neovim/after/plugin/fugitive.lua +++ b/config/neovim/after/plugin/fugitive.lua @@ -1,4 +1,4 @@ -vim.keymap.set("n", "gs", vim.cmd.Git) +vim.keymap.set("n", "gs", "GitK") vim.api.nvim_create_autocmd("BufWinEnter", { pattern = "*",