diff --git a/vimrc b/vimrc index 44d4b1d..5814652 100644 --- a/vimrc +++ b/vimrc @@ -22,30 +22,33 @@ set visualbell "No sounds set autoread "Reload files changed outside vim set expandtab "Use spaces for tab at insert mode -set shiftwidth=2 "How many columns text is indented with the reindent operations -set softtabstop=2 "Duh? -set tabstop=2 "How many columns a tab counts for +set shiftwidth=4 "How many columns text is indented with the reindent operations +set softtabstop=4 "Duh? +set tabstop=4 "How many columns a tab counts for -set history=1000 "Keep 150 lines of command line history +set history=10000 "Keep 150 lines of command line history set ruler "Show the cursor position all the time set showcmd "Display incomplete commands set incsearch "Do incremental searching set ignorecase "Make searches case-insensitive. set smartcase "Unless there is a capital letter +set hlsearch "Highlight each search match -colorscheme codeschool +colorscheme molokai "codeschool let mapleader="," " Display tabs and trailing spaces visually set list listchars=tab:\ \ ,trail:ยท -"set colorcolumn=0 "Disable max chars column +set colorcolumn=80 "Disable max chars column filetype on "Enable filetype detection filetype indent on "Enable filetype-specific indenting filetype plugin on "Enable filetype-specific plugins filetype indent plugin on +set encoding=utf8 +set paste set omnifunc=syntaxcomplete#Complete