From 9aae779da447c4b7fe69508c312f083adc2dd07c Mon Sep 17 00:00:00 2001 From: David JULIEN Date: Sun, 19 Feb 2023 16:53:37 +0100 Subject: [PATCH] [nvim] fix: duplicate setting + set tabstop to 4 --- .config/nvim/lua/settings.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/nvim/lua/settings.lua b/.config/nvim/lua/settings.lua index d993097..3336c43 100644 --- a/.config/nvim/lua/settings.lua +++ b/.config/nvim/lua/settings.lua @@ -49,7 +49,7 @@ opt.showmode = false -- text, tabs, indents opt.textwidth = 79 -opt.shiftwidth = 8 +opt.tabstop = 4 opt.softtabstop = -1 opt.expandtab = true opt.shiftwidth = 0