diff --git a/home/dot_config/nvim/exact_lua/config/options.lua b/home/dot_config/nvim/exact_lua/config/options.lua index 7865fcc..73dd407 100644 --- a/home/dot_config/nvim/exact_lua/config/options.lua +++ b/home/dot_config/nvim/exact_lua/config/options.lua @@ -10,8 +10,11 @@ vim.wo.number = true -- Relative line numbers vim.wo.relativenumber = true --- Enable mouse mode -vim.o.mouse = 'a' +-- Highlight the line the cursor is on +vim.o.cursorline = true + +-- Disable mouse mode completely +vim.o.mouse = '' -- Sync clipboard between OS and Neovim. -- Remove this option if you want your OS clipboard to remain independent.