From 328adaec753bd664284affdd498ce4c927828a12 Mon Sep 17 00:00:00 2001 From: ItsDrike Date: Mon, 6 Dec 2021 13:59:10 +0100 Subject: [PATCH] Enable shiftround --- home/.config/nvim/lua/options.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/home/.config/nvim/lua/options.lua b/home/.config/nvim/lua/options.lua index 7d0bce2..e92472c 100644 --- a/home/.config/nvim/lua/options.lua +++ b/home/.config/nvim/lua/options.lua @@ -12,6 +12,7 @@ o.tabstop = 4 -- Tab size in spaces o.shiftwidth = 4 -- Indentation size o.softtabstop = 4 -- Tabs/Spaces interlop o.tabpagemax = 50 -- More tabs +o.shiftround = true -- Always round indent to multiple of shiftwidth -- Folding o.foldmethod = "indent" -- Use indent to determine the fold levels