diff options
author | listout <listout@protonmail.com> | 2022-07-20 10:15:04 +0530 |
---|---|---|
committer | listout <listout@protonmail.com> | 2022-09-01 16:26:24 +0530 |
commit | b5d497da359e7d5224e0462bd5b55c3d1caefd26 (patch) | |
tree | b5d2f785ecca35ee7ea0af66cd1c483fa1a2b528 /configs | |
parent | 6681f9b89cbd4e8510093d9437f23612d9fdb491 (diff) |
nvim/configs/basic: using 4 spaces as tabs instead of 8
Signed-off-by: listout <listout@protonmail.com>
Diffstat (limited to 'configs')
-rw-r--r-- | configs/basic.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configs/basic.vim b/configs/basic.vim index b18e2f2..cdb51e1 100644 --- a/configs/basic.vim +++ b/configs/basic.vim @@ -79,7 +79,7 @@ set nobackup nowritebackup set noswapfile " Tab settings -set tabstop=8 softtabstop=8 shiftwidth=8 noexpandtab +set tabstop=4 softtabstop=4 shiftwidth=4 noexpandtab " Correct indentation set autoindent smartindent cindent |