Created
June 15, 2012 08:02
-
-
Save carl-olin/2935305 to your computer and use it in GitHub Desktop.
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
set backspace=indent,eol,start " Allow backspace in insert mode | |
set history=1000 " Store lots of :cmdline history | |
set autoread " Reload files changed outside vim | |
set incsearch " Find the next match as we type the search | |
set viminfo='100,f1 " Save up to 100 marks, enable capital marks | |
set noswapfile | |
set nobackup | |
set nowb | |
set autoindent | |
set smartindent | |
set smarttab | |
set shiftwidth=4 | |
set softtabstop=4 | |
set tabstop=4 | |
set expandtab | |
" Show tabs and spaces | |
set list listchars=tab:\ \ ,trail:· |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment