Skip to content

Commit

Permalink
Enable nvim cursorline and disable mouse
Browse files Browse the repository at this point in the history
  • Loading branch information
nvonbulow committed Dec 30, 2023
1 parent 8972b5f commit 90c9d75
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions home/dot_config/nvim/exact_lua/config/options.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 90c9d75

Please sign in to comment.