From 6150159f1b0a6fd232d25cf23279f33c2d5f926b Mon Sep 17 00:00:00 2001 From: Madison Date: Mon, 27 May 2024 15:19:07 -0700 Subject: [PATCH] add tabstop, shiftwidth and autoindent --- init.lua | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/init.lua b/init.lua index 88658ef3..5be35734 100644 --- a/init.lua +++ b/init.lua @@ -154,6 +154,10 @@ vim.opt.cursorline = true -- Minimal number of screen lines to keep above and below the cursor. vim.opt.scrolloff = 10 +vim.opt.autoindent = true +vim.opt.tabstop = 4 +vim.opt.shiftwidth = 4 + -- [[ Basic Keymaps ]] -- See `:help vim.keymap.set()`