From: Arthur Taft Date: Mon, 13 Oct 2025 00:25:47 +0000 (-0600) Subject: Change tab indent to 4 spaces X-Git-Url: https://gitweb.arthurtaft.net/nvim.git/commitdiff_plain/HEAD Change tab indent to 4 spaces --- diff --git a/lua/config/options.lua b/lua/config/options.lua index db942f1..e2e12d2 100644 --- a/lua/config/options.lua +++ b/lua/config/options.lua @@ -3,8 +3,8 @@ o.termguicolors = true o.number = true wo.signcolumn = "yes" o.expandtab = true -o.shiftwidth = 2 -o.tabstop = 2 +o.shiftwidth = 4 +o.tabstop = 4 o.ignorecase = true o.smartcase = true o.clipboard = "unnamedplus"