Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 9 additions & 6 deletions vimrc
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down