This is .vimrc in vim mode, it seems that the comments are all aligned
After looking at github, vimrc is a mess.
The same is true when opening with sublime, but after Sublime sets tab size =2, it becomes normal again.
走同样的路,发现不同的人生
Because your file uses tabs instead of spaces for indentation, just replace it:
sed -i '' -E "s/$(echo -n -e "\t")/ /g" .vimrc
In addition, you can configure vim to use space instead of tab for indentation:
set expandtab set tabstop=2 set shiftwidth=2 set softtabstop=2
Because your file uses tabs instead of spaces for indentation, just replace it:
In addition, you can configure vim to use space instead of tab for indentation: