From 7e3914a42221e1492ac424bfe70ab5803e5558e9 Mon Sep 17 00:00:00 2001 From: Nathan Justinian Date: Sat, 4 Feb 2023 02:18:56 -0500 Subject: [PATCH] enable retical and turn off smartcase --- init.lua | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/init.lua b/init.lua index e0c599bf..10bd09f5 100644 --- a/init.lua +++ b/init.lua @@ -553,5 +553,9 @@ vim.keymap.set('n', '', ':wincmd j', {silent = true}) vim.keymap.set('n', '', ':wincmd h', {silent = true}) vim.keymap.set('n', '', ':wincmd l', {silent = true}) +vim.o.cursorline = true +vim.o.cursorcolumn = true +vim.o.smartcase = false + -- The line beneath this is called `modeline`. See `:help modeline` -- vim: ts=2 sts=2 sw=2 et