From 11fb7c1bc9ff4b0d9edce6c7a27b700d2f8698de Mon Sep 17 00:00:00 2001 From: Kevin James Lausen Date: Sun, 29 May 2022 11:47:32 -0400 Subject: [PATCH] Enabled cursorcolumn, so I would get a cool code cross-hairs effect --- lua/user/options.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/lua/user/options.lua b/lua/user/options.lua index 5ddf380..cd7e877 100644 --- a/lua/user/options.lua +++ b/lua/user/options.lua @@ -25,6 +25,7 @@ vim.opt.expandtab = true -- convert tabs to spaces vim.opt.shiftwidth = 2 -- the number of spaces inserted for each indentation vim.opt.tabstop = 2 -- insert 2 spaces for a tab vim.opt.cursorline = true -- highlight the current line +vim.opt.cursorcolumn = true -- Enable a vertical column, that makes a code cross-hair on the current column. vim.opt.number = true -- set numbered lines vim.opt.relativenumber = true -- set relative numbered lines vim.opt.numberwidth = 4 -- set number column width to 2 {default 4}