From ff684aba9413a90539c856f5f59c6d16ae0425ef Mon Sep 17 00:00:00 2001 From: xesc Date: Mon, 8 Apr 2024 20:01:42 +0200 Subject: [PATCH] updates cursorlinecolor and fixes harpoon --- lua/plugin/everforest.lua | 4 ++-- lua/plugin/harpoon.lua | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/lua/plugin/everforest.lua b/lua/plugin/everforest.lua index f7b5e0d..586df99 100644 --- a/lua/plugin/everforest.lua +++ b/lua/plugin/everforest.lua @@ -26,7 +26,7 @@ return { vim.api.nvim_set_hl(0, "VertSplit", { bg = "#141617", fg = "#141617" }) -- color of the cursorline and cursorlinenumber vim.api.nvim_set_hl(0, "Cursorline", { bg = "#2d353b" }) - vim.api.nvim_set_hl(0, "CursorLineNr", { bold = true, fg = "#dfa000" }) + vim.api.nvim_set_hl(0, "CursorLineNr", { bold = true, fg = "#dbbc7f" }) -- color of Floats and FloatBorders vim.api.nvim_set_hl(0, "NormalFloat", { bg = none, fg = none }) vim.api.nvim_set_hl(0, "FloatBorder", { bg = none, fg = "#9da9a0" }) @@ -49,7 +49,7 @@ return { vim.api.nvim_set_hl(0, "VertSplit", { bg = "#141617", fg = "#141617" }) -- color of the cursorline and cursorlinenumber vim.api.nvim_set_hl(0, "Cursorline", { bg = "#2d353b" }) - vim.api.nvim_set_hl(0, "CursorLineNr", { bold = true, fg = "#dfa000" }) + vim.api.nvim_set_hl(0, "CursorLineNr", { bold = true, fg = "#dbbc7f" }) -- color of Floats and FloatBorders vim.api.nvim_set_hl(0, "NormalFloat", { bg = none, fg = none }) vim.api.nvim_set_hl(0, "FloatBorder", { bg = none, fg = "#9da9a0" }) diff --git a/lua/plugin/harpoon.lua b/lua/plugin/harpoon.lua index e73c6da..b8b2b32 100644 --- a/lua/plugin/harpoon.lua +++ b/lua/plugin/harpoon.lua @@ -10,7 +10,7 @@ return { local harpoon = require("harpoon") harpoon:setup() - vim.keymap.set("n", "a", function() harpoon:list():append() end) + vim.keymap.set("n", "a", function() harpoon:list():add() end) vim.keymap.set("n", "", function() harpoon.ui:toggle_quick_menu(harpoon:list()) end) vim.keymap.set("n", "n", function() harpoon:list():select(1) end)