From a50af86510bee62b0ed0f60ab66aec68373307ef Mon Sep 17 00:00:00 2001 From: asthetik Date: Sat, 6 Apr 2024 19:09:20 +0800 Subject: [PATCH] update configuration --- init.lua | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/init.lua b/init.lua index baade261..c7edfb7f 100644 --- a/init.lua +++ b/init.lua @@ -104,6 +104,11 @@ vim.opt.number = true -- Experiment for yourself to see if you like it! vim.opt.relativenumber = true +vim.opt.tabstop = 2 +vim.opt.shiftwidth = 2 +vim.opt.expandtab = true +vim.opt.autoindent = true + -- Enable mouse mode, can be useful for resizing splits for example! vim.opt.mouse = 'a'