Created
September 21, 2013 19:20
-
-
Save edigreat/6653376 to your computer and use it in GitHub Desktop.
vim configuration file (.vimrc)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| " Pathogen | |
| execute pathogen#infect() | |
| call pathogen#helptags() " generate helptags for everything in 'runtimepath' | |
| syntax on | |
| filetype plugin indent on | |
| set number | |
| colorscheme desert | |
| set background=dark | |
| " Use Unix as the standard file type | |
| set ffs=unix,dos,mac | |
| " Turn backup off, since most stuff is in SVN, git et.c anyway... | |
| set nobackup | |
| set nowb | |
| set noswapfile | |
| " Use spaces instead of tabs | |
| set expandtab | |
| " Be smart when using tabs ;) | |
| set smarttab | |
| " 1 tab == 4 spaces | |
| set shiftwidth=4 | |
| set tabstop=4 | |
| """""""""""""""""""""""""""""" | |
| " Always show the status line | |
| set laststatus=2 | |
| " Set to auto read when a file is changed from the outside | |
| set autoread | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment