diff options
author | listout <listout@protonmail.com> | 2022-01-19 00:36:05 +0530 |
---|---|---|
committer | listout <listout@protonmail.com> | 2022-01-19 00:36:05 +0530 |
commit | dda9aacda36e8cdee78a9e74671c5dd460b167b9 (patch) | |
tree | 0e1672df8af5669305b8d32500246aeb0f1cc85d /configs | |
parent | dbde04b3b62e764db32b72c09544d3e879abf99a (diff) |
changed tab to 8 character, like linux coding standard
Diffstat (limited to 'configs')
-rw-r--r-- | configs/basic.vim | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/configs/basic.vim b/configs/basic.vim index 4dab3da..a224b9c 100644 --- a/configs/basic.vim +++ b/configs/basic.vim @@ -78,11 +78,11 @@ set nobackup nowritebackup " No swap files set noswapfile -" Correct indentation -set autoindent smartindent - " Tab settings -set noexpandtab smarttab tabstop=4 shiftwidth=4 +set tabstop=8 softtabstop=8 shiftwidth=8 noexpandtab + +" Correct indentation +set autoindent smartindent cindent " Share system clipboard set clipboard=unnamedplus |