summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.vimrc3
1 files changed, 2 insertions, 1 deletions
diff --git a/.vimrc b/.vimrc
index 6b584fa..8007b2b 100644
--- a/.vimrc
+++ b/.vimrc
@@ -22,7 +22,6 @@ set incsearch " increment search
set ignorecase " case-insensitive search
set smartcase " upper-case sensitive search
set laststatus=2
-set ruler " ruler display in status line
"set mouse-=a " disable the mouse
set nopaste
@@ -36,6 +35,8 @@ let python_highlight_all = 1
inoremap <C-s> <esc>:w<cr>a
nnoremap <C-s> :w<cr>
+au VimEnter * :NERDTreeToggle
+
autocmd FileType make setlocal noexpandtab
au FileType python set ts=4 sw=4 softtabstop=4 et