Compare commits

..

No commits in common. "d256af35364c145b9196a1b0db302bf1e2004456" and "29cfce111171c7b0dda6557f5f2238a9ac1879db" have entirely different histories.

2 changed files with 1 additions and 6 deletions

View File

@ -2,7 +2,7 @@ vim.g.mapleader = " "
vim.g.maplocalleader = "," vim.g.maplocalleader = ","
-- FIX to create spell dir if not existent -- FIX to create spell dir if not existent
local spelldir = vim.fn.stdpath("config") .. "/spell" local spelldir = vim.fn.stdpath("data") .. "/site/spell"
if not vim.loop.fs_stat(spelldir) then if not vim.loop.fs_stat(spelldir) then
vim.fn.mkdir(spelldir, "p") vim.fn.mkdir(spelldir, "p")
end end

View File

@ -74,8 +74,3 @@ require("which-key").register({
["<"] = { "<gv", "Shift left" }, ["<"] = { "<gv", "Shift left" },
[">"] = { ">gv", "Shift right" }, [">"] = { ">gv", "Shift right" },
}, { mode = "v" }) }, { mode = "v" })
-- better yank in visual mode
require("which-key").register({
y = { "ygv<esc>", "Yank" },
}, { mode = "v" })