From 55951f6a1fbf601bcf44d6b86669e838935dbc66 Mon Sep 17 00:00:00 2001 From: gitea Date: Sun, 11 Dec 2022 10:03:38 +0000 Subject: [PATCH] + vimrc soft tabs with fourc spaces --- etc/vim/vimrc | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 etc/vim/vimrc diff --git a/etc/vim/vimrc b/etc/vim/vimrc new file mode 100644 index 0000000..f2fca13 --- /dev/null +++ b/etc/vim/vimrc @@ -0,0 +1,10 @@ +set tabstop=4 " The width of a TAB is set to 4. + " Still it is a \t. It is just that + " Vim will interpret it to be having + " a width of 4. + +set shiftwidth=4 " Indents will have a width of 4 + +set softtabstop=4 " Sets the number of columns for a TAB + +set expandtab " Expand TABs to spaces