enable cursor line highlighting

This commit is contained in:
Nick Burt 2024-02-05 11:20:14 -06:00
parent 152611874a
commit 11fdede2f8
1 changed files with 3 additions and 1 deletions

View File

@ -9,10 +9,12 @@ vim.opt.incsearch = true
-- Enable mouse mode -- Enable mouse mode
vim.opt.mouse = '' vim.opt.mouse = ''
-- FIX: shared clipboard not working
-- Sync clipboard between OS and Neovim. -- Sync clipboard between OS and Neovim.
vim.opt.clipboard = 'unnamed,unnamedplus' vim.opt.clipboard = 'unnamed,unnamedplus'
-- Enables cursor-line highlighting
vim.opt.cursorline = true
-- Enable spell check -- Enable spell check
vim.opt.spell = true vim.opt.spell = true
vim.opt.spelloptions = 'camel' vim.opt.spelloptions = 'camel'