From 46996651e0b0de8adb0fa82bf1aff1abc832a713 Mon Sep 17 00:00:00 2001 From: Christian Baer Date: Thu, 7 May 2020 09:50:51 +0200 Subject: [PATCH] Fixed tabs and spaces in .vimrc --- .vimrc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.vimrc b/.vimrc index 0d2d01b..a65fd69 100644 --- a/.vimrc +++ b/.vimrc @@ -18,8 +18,8 @@ set incsearch " Jump to search match while typing. set hlsearch " Highlight the last used search pattern. set nrformats-=octal " Remove octal support from 'nrformats'. set tabstop=2 " Size of a Tab character. -set shiftwidth=0 " Use same value as 'tabstop'. -set softtabstop=-1 " Use same value as 'shiftwidth'. +set shiftwidth=2 " Use same value as 'tabstop'. +set softtabstop=2 " Use same value as 'shiftwidth'. set encoding=utf-8 " Set encoding color smyck " Colorscheme see https://github.com/hukl/Smyck-Color-Scheme set list listchars=tab:»·,trail:·" Show trailing spaces and highlight hard tabs