From: David Kerkeslager Date: Mon, 15 Aug 2016 18:22:35 +0000 (-0400) Subject: Corrected indentation comments X-Git-Url: https://code.kerkeslager.com/?p=dotfiles;a=commitdiff_plain;h=d6e49ee04285f8d55c173a5bbf1d42ba4f8cd5ae Corrected indentation comments --- diff --git a/.vimrc b/.vimrc index b48496e..af109ae 100644 --- a/.vimrc +++ b/.vimrc @@ -32,14 +32,14 @@ set scrolloff=5 " Turn off error bells and visual bell set noeb vb t_vb= -" Set tabs to width 4. +" Set tabs to width 2. filetype plugin indent on set shiftwidth=2 set softtabstop=2 set tabstop=2 set expandtab -" language-specific settings +" language-specific settings: tab width is 4 for python autocmd FileType python setlocal shiftwidth=4 softtabstop=4 tabstop=4 " Allow backspacing over everything in insert mode.