spell suggester

This commit is contained in:
Christoph J. Scherr 2024-01-20 19:02:57 +01:00
parent 93eb1ca84c
commit 59f952ce13
Signed by: PlexSheep
GPG Key ID: 7CDD0B14851A08EF
1 changed files with 5 additions and 1 deletions

View File

@ -351,7 +351,7 @@ M.edit = {
end, end,
"format buffer", "format buffer",
}, },
--
-- remove trailing whitespace -- remove trailing whitespace
["<leader>fw"] = { ["<leader>fw"] = {
function() function()
@ -359,6 +359,10 @@ M.edit = {
end, end,
"remove whitespace", "remove whitespace",
}, },
-- spell
["z<space>"] = { "<cmd>Telescope spell_suggest<CR>", "Spell suggest" },
["z="] = { "<cmd>Telescope spell_suggest<CR>", "Spell suggest" },
}, },
v = { v = {
["<Left>"] = { "<gv", "Less indentation" }, ["<Left>"] = { "<gv", "Less indentation" },