From 11fdede2f8462258fe38da2ca9b6dae2e166cae6 Mon Sep 17 00:00:00 2001 From: Nick Burt Date: Mon, 5 Feb 2024 11:20:14 -0600 Subject: [PATCH] enable cursor line highlighting --- lua/settings.lua | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lua/settings.lua b/lua/settings.lua index 6837c983..43f38458 100644 --- a/lua/settings.lua +++ b/lua/settings.lua @@ -9,10 +9,12 @@ vim.opt.incsearch = true -- Enable mouse mode vim.opt.mouse = '' --- FIX: shared clipboard not working -- Sync clipboard between OS and Neovim. vim.opt.clipboard = 'unnamed,unnamedplus' +-- Enables cursor-line highlighting +vim.opt.cursorline = true + -- Enable spell check vim.opt.spell = true vim.opt.spelloptions = 'camel'