From a1cf61e81f5f92a44ed47ef9a17fe77966ccc40b Mon Sep 17 00:00:00 2001 From: mjhika <1zzt6ovh@mojica.anonaddy.com> Date: Thu, 24 Aug 2023 17:58:10 -0400 Subject: [PATCH] change options --- init.lua | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/init.lua b/init.lua index 23775f93..7b4234aa 100644 --- a/init.lua +++ b/init.lua @@ -181,10 +181,10 @@ require('lazy').setup({ -- NOTE: You can change these options as you wish! -- Set highlight on search -vim.o.hlsearch = false +vim.o.hlsearch = true -- Make line numbers default -vim.wo.number = true +vim.o.relativenumber = true -- Enable mouse mode vim.o.mouse = 'a' @@ -217,6 +217,12 @@ vim.o.completeopt = 'menuone,noselect' -- NOTE: You should make sure your terminal supports this vim.o.termguicolors = true +-- Set whitespace to not be so aggresive +vim.o.tabstop = 2 +vim.o.softtabstop = 2 +vim.o.shiftwidth = 2 +vim.o.expandtab = true + -- [[ Basic Keymaps ]] -- Keymaps for better default experience