From d4ca0b9a229d1205381740275bb1aa5713be3087 Mon Sep 17 00:00:00 2001 From: Never Gude Date: Fri, 26 Dec 2025 04:59:39 +0100 Subject: [PATCH] sutff --- init.lua | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/init.lua b/init.lua index 377e957..a4e7902 100644 --- a/init.lua +++ b/init.lua @@ -86,6 +86,9 @@ P.S. You can delete this when you're done too. It's your config now! :) vim.o.guifont = 'SauceCodePro NF:h12' vim.o.autochdir = true +vim.o.softtabstop = 2 +vim.o.shiftwidth = 2 + -- Set as the leader key -- See `:help mapleader` -- NOTE: Must happen before plugins are loaded (otherwise wrong leader will be used) @@ -249,6 +252,7 @@ rtp:prepend(lazypath) -- NOTE: Here is where you install your plugins. require('lazy').setup({ -- NOTE: Plugins can be added with a link (or for a github repo: 'owner/repo' link). + 'NMAC427/guess-indent.nvim', -- Detect tabstop and shiftwidth automatically -- NOTE: Plugins can also be added by using a table,