diff options
| -rw-r--r-- | .vimrc | 20 |
1 files changed, 20 insertions, 0 deletions
@@ -0,0 +1,20 @@ +syntax enable +set background=dark +colorscheme solarized + +set nocompatible +set encoding=utf-8 +set showcmd " display incomplete commands +filetype plugin indent on " load file type plugins + indentation + +"" Whitespace +set nowrap " don't wrap lines +set tabstop=4 shiftwidth=4 " a tab is two spaces +set expandtab " use spaces, not tabs +set backspace=indent,eol,start " backspace through everything in insert mode + +"" Searching +set hlsearch " highlight matches +set incsearch " incremental searching +set ignorecase " searches are case insensitive... +set smartcase " ... unless they contain at least one capital letter |
