Skip to content

Commit

Permalink
fix(neovim): explicitly switch off cursorline and cursor column
Browse files Browse the repository at this point in the history
It turned out that the sameness of colour choice of the cursorline and
the background was unintentional from the author of the cyberdream
colourscheme.
  • Loading branch information
Botond Kalocsai committed May 1, 2024
1 parent f1aad7d commit 6c2caa3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions home/dot_config/nvim/lua/config/options.lua
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ local psep = package.config:sub(1, 1) -- Directory path separator on platform
vim.opt.colorcolumn = "79"

-- Setting horizontal and vertical cursor line
-- vim.o.cursorline = true
-- vim.o.cursorcolumn = true
vim.o.cursorline = false
vim.o.cursorcolumn = false

-- Setting ergonomic nerdfont for gui usage, especially for neovim-qt
vim.opt.guifont = "OpenDyslexicM Nerd Font Mono:h10"
Expand Down

0 comments on commit 6c2caa3

Please sign in to comment.