Add spell

Signed-off-by: Ryan <ryan@alien.gov>
This commit is contained in:
Ryan 2023-11-30 15:44:15 +08:00
parent d39f6a98db
commit 828431ef70
No known key found for this signature in database
GPG Key ID: DB5B3AC49EEFD2A5
1 changed files with 5 additions and 5 deletions

View File

@ -3,20 +3,20 @@ local o = vim.o
local global = vim.g
-- look and feel
o.termguicolors = true
o.ruler = true
o.relativenumber = true
o.number = true
o.showmode = false
o.relativenumber = true
o.ruler = true
o.scrolloff = 10
o.showmode = false
o.spell = true
global.netrw_bufsettings = "noma nomod relativenumber nowrap ro nobl"
-- controlling
vim.opt.completeopt = { 'menu', 'menuone', 'noselect' }
o.autoindent = true
o.ignorecase = true
o.smartcase = true
o.smartindent = true
o.autoindent = true
-- leader settings
global.mapleader = ' '