clone of my dotfiles.ssp.sh
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

spell checker

sspaeti 21a95b45 7dcd49b9

+5
+5
nvim/.config/nvim/lua/sspaeti/set.lua
··· 97 97 vim.opt_local.wrap = true 98 98 vim.opt_local.linebreak = true 99 99 100 + -- Make spell errors visible: red underline + colored text (works in all terminals) 101 + vim.api.nvim_set_hl(0, "SpellBad", { underline = true, fg = "#e82424" }) 102 + vim.api.nvim_set_hl(0, "SpellCap", { underline = true, fg = "#e6c384" }) 103 + vim.api.nvim_set_hl(0, "SpellRare", { underline = true, fg = "#957FB8" }) 104 + 100 105 -- Spell keymaps with which-key labels (buffer-local) 101 106 local opts = function(desc) return { buffer = true, desc = desc } end 102 107 vim.keymap.set("n", "]s", "]s", opts("Next spell error"))