From bcd996ad8f4d8e0e216015fc292f8c8933627504 Mon Sep 17 00:00:00 2001 From: vx-clutch Date: Wed, 23 Jul 2025 13:09:13 -0400 Subject: [PATCH] save --- nvim/.config/nvim/init.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nvim/.config/nvim/init.lua b/nvim/.config/nvim/init.lua index c9a36ab..0be63d0 100644 --- a/nvim/.config/nvim/init.lua +++ b/nvim/.config/nvim/init.lua @@ -48,8 +48,8 @@ opt.number = true -- Show opt.relativenumber = true -- Show relative line numbers opt.splitbelow = true -- New horizontal splits open below opt.splitright = true -- New vertical splits open to the right -opt.shiftwidth = 8 -- Spaces for auto-indent -opt.tabstop = 8 -- Spaces for a tab character +opt.shiftwidth = 2 -- Spaces for auto-indent +opt.tabstop = 2 -- Spaces for a tab character opt.expandtab = true -- Use spaces instead of tabs opt.scrolloff = 8 -- Lines to keep above/below cursor vim.cmd('autocmd BufEnter * set formatoptions-=cro') -- Disable auto-commenting on new lines