From 6c2caa307d7eeb37db51b6f13efb0745254b9d76 Mon Sep 17 00:00:00 2001 From: Botond Kalocsai Date: Wed, 1 May 2024 18:49:03 +0200 Subject: [PATCH] fix(neovim): explicitly switch off cursorline and cursor column It turned out that the sameness of colour choice of the cursorline and the background was unintentional from the author of the cyberdream colourscheme. --- home/dot_config/nvim/lua/config/options.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/home/dot_config/nvim/lua/config/options.lua b/home/dot_config/nvim/lua/config/options.lua index 7419354..5a493fc 100644 --- a/home/dot_config/nvim/lua/config/options.lua +++ b/home/dot_config/nvim/lua/config/options.lua @@ -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"