From 74c9eb54d6adb90aa266c73d8f016a44c070cfd1 Mon Sep 17 00:00:00 2001 From: Jonas Hagberg Date: Tue, 16 Apr 2024 13:49:30 +0200 Subject: [PATCH] Set tabstop --- init.lua | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/init.lua b/init.lua index cab8055f..0683ded1 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 +-- Tabstop and shiftwidth settings +vim.opt.tabstop = 4 +vim.opt.shiftwidth = 4 + -- [[ Basic Keymaps ]] -- See `:help vim.keymap.set()`