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)