let g:rainbow_active = 1
-" set leader and local leader
let mapleader = ","
let maplocalleader = "_"
set cursorcolumn
set cursorline
-" turn on filetype specific stuff
filetype plugin indent on
colorscheme bitterjug
syntax on
-" turn on those nice numbers on the left side
set number
-
-" and make them relative
set relativenumber
-"Incremental search
set incsearch
-
-" smartsearch
set ignorecase
set smartcase
-" tab settings
set expandtab
set smarttab
set tabstop=4
set nobackup
-" gui options
if has('gui_running')
set guioptions=aAceif
endif
-" Bindings
nnoremap <F8> :TagbarToggle<CR>
-" user defined commands
command Vr tabedit ~/.vim/vimrc
command Vt execute "tabedit ~/.vim/ftplugin/" . &filetype . ".vim"
-" ctrlp should change working directory
let g:ctrlp_working_path_mode = 0