From a80482551bb57bf66ca4f2d7c0435f87c47c3219 Mon Sep 17 00:00:00 2001 From: schistos Date: Mon, 15 Jul 2024 14:18:19 +0300 Subject: [PATCH] fix config being overriden by a plugin --- after/init.lua | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 after/init.lua diff --git a/after/init.lua b/after/init.lua new file mode 100644 index 00000000..e87ecea9 --- /dev/null +++ b/after/init.lua @@ -0,0 +1,4 @@ +vim.o.tabstop = 4 -- A TAB character looks like 4 spaces +vim.o.expandtab = true -- Pressing the TAB key will insert spaces instead of a TAB character +vim.o.softtabstop = 4 -- Number of spaces inserted instead of a TAB character +vim.o.shiftwidth = 4 -- Number of spaces inserted when indenting