diff --git a/lua/core/remap.lua b/lua/core/remap.lua index 97c7f89..40666fd 100644 --- a/lua/core/remap.lua +++ b/lua/core/remap.lua @@ -38,9 +38,6 @@ vim.api.nvim_set_keymap("n", "Y", "\"+Y", {}) -- paste from system clipboard vim.api.nvim_set_keymap("n", "p", "\"+p", {}) --- opening explorer -vim.api.nvim_set_keymap("n", "E", ":20Lexplore", {}) - -- make current file (un)executable vim.api.nvim_set_keymap("n", "mx", ":exec 'w' !chmod +x %", { silent = true }) vim.api.nvim_set_keymap("n", "mX", ":exec 'w' !chmod -x %", { silent = true }) @@ -53,4 +50,4 @@ vim.api.nvim_set_keymap("n", "vl", ":exec 'w' loadview ", ":exec 'w'", {silent = true}) -- r for redo -vim.api.nvim_set_keymap("n", "r", ":exec 'w' ", {silent = true}) +vim.api.nvim_set_keymap("n", "r", ":redo ", {silent = true}) diff --git a/lua/core/settings.lua b/lua/core/settings.lua index e923f84..f199eb5 100644 --- a/lua/core/settings.lua +++ b/lua/core/settings.lua @@ -1,7 +1,7 @@ -- Settings -- cursor -vim.api.nvim_set_option("guicursor","n-v-c-sm:hor20-Cursor,i-ci-ve:ver80-iCursor,r-cr-o:hor40,a:blinkwait700-blinkoff400-blinkon250") +vim.api.nvim_set_option("guicursor","n-v-c-sm:hor100-Cursor,i-ci-ve:ver100-iCursor,r-cr-o:hor40,a:blinkwait700-blinkoff400-blinkon250") -- disable mouse vim.api.nvim_set_option("mouse","") diff --git a/lua/plugin/everforest.lua b/lua/plugin/everforest.lua index 586df99..cb4134b 100644 --- a/lua/plugin/everforest.lua +++ b/lua/plugin/everforest.lua @@ -25,7 +25,7 @@ return { -- color of vertical split line 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, "Cursorline", { bg = "#3a464c" }) 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 }) @@ -48,7 +48,7 @@ return { -- color of vertical split line 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, "Cursorline", { bg = "#3c464c" }) 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 })