summaryrefslogtreecommitdiff
path: root/vim/.vimrc
diff options
context:
space:
mode:
authorBobby Bingham <koorogi@koorogi.info>2016-12-12 23:55:06 -0600
committerBobby Bingham <koorogi@koorogi.info>2016-12-12 23:55:06 -0600
commit680ed69ef244ec7e6e9fbf215cb9696fa7f9fc56 (patch)
tree202a18660bb494a0c153d880927a6fc5a1c9ed8a /vim/.vimrc
parente7d78a8ae6daf0c41a2ec4133e458cd902f7f2de (diff)
vim: set nocompatible explicitly
Diffstat (limited to 'vim/.vimrc')
-rw-r--r--vim/.vimrc4
1 files changed, 4 insertions, 0 deletions
diff --git a/vim/.vimrc b/vim/.vimrc
index 9be83da..e9f9009 100644
--- a/vim/.vimrc
+++ b/vim/.vimrc
@@ -1,3 +1,6 @@
+" in case there were any doubt about this being classic vi
+set nocompatible
+
" load bundles under ~/.vim/bundle/*
execute pathogen#infect()
@@ -6,6 +9,7 @@ set fileencoding=utf8
set fileencodings=utf8
" these seem reasonable
+filetype plugin on
set tabstop=4
set softtabstop=4
set shiftwidth=4