Skip to content

Commit f9c03f8

Browse files
committed
Added spelling plugin?
1 parent a4b3ca3 commit f9c03f8

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

init.lua

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
--[[
2-
3-
=====================================================================
2+
======================================================================
43
==================== READ THIS BEFORE CONTINUING ====================
54
=====================================================================
65
======== .-----. ========
@@ -181,6 +180,9 @@ vim.api.nvim_set_keymap('i', '<C-]>', '<C-o>$', { noremap = true })
181180
vim.api.nvim_set_keymap('i', '<C-f>', '<ESC>^', { noremap = true })
182181
vim.api.nvim_set_keymap('i', '<C-M-p>', '<ESC>opi', { noremap = true })
183182
vim.api.nvim_set_keymap('i', '<C-M-P>', '<ESC>oPi', { noremap = true })
183+
vim.api.nvim_set_keymap('i', '<M-->', '', { noremap = true })
184+
vim.api.nvim_set_keymap('i', '<M-=>', '', { noremap = true })
185+
184186
-- Block cursor
185187
-- vim.opt.guicursor = 'n-v-c:block,i:block-blinkwait700-blinkoff400-blinkon250,sm:block'
186188
-- vim.opt.guicursor = 'n-v-c:block,i:ver25-blinkon250-blinkoff400-blinkwait700,r:hor20,o:hor50,sm:block-blinkwait175-blinkoff150-blinkon175'
@@ -409,6 +411,11 @@ require('lazy').setup({
409411
-- delay between pressing a key and opening which-key (milliseconds)
410412
-- this setting is independent of vim.opt.timeoutlen
411413
delay = 0,
414+
plugins = {
415+
spelling = {
416+
enabled = true
417+
}
418+
},
412419
icons = {
413420
-- set icon mappings to true if you have a Nerd Font
414421
mappings = vim.g.have_nerd_font,

0 commit comments

Comments
 (0)