Skip to content

Instantly share code, notes, and snippets.

@nkoehring
Last active December 30, 2015 11:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nkoehring/7821282 to your computer and use it in GitHub Desktop.
Save nkoehring/7821282 to your computer and use it in GitHub Desktop.
my vimrc at work, nice and small thanks to Vundle plugins
set nocompatible
set expandtab
set shiftwidth=4
set tabstop=4
set softtabstop=4
set autoindent
set encoding=utf-8
set textwidth=101
set colorcolumn=101
set scrolloff=5
set t_Co=256
set hlsearch
set number
set laststatus=2
filetype off
set rtp+=~/.vim/bundle/vundle/
call vundle#rc()
Bundle 'gmarik/vundle'
Bundle 'wookiehangover/jshint.vim'
Bundle 'kien/ctrlp.vim'
Bundle 'jelera/vim-javascript-syntax'
Bundle 'rking/ag.vim'
Bundle 'spolu/dwm.vim'
Bundle 'editorconfig/editorconfig-vim'
Bundle 'mhinz/vim-signify'
Bundle 'tpope/vim-fugitive'
Bundle 'bling/vim-airline'
Bundle 'scrooloose/syntastic'
Bundle 'Shougo/neocomplcache.vim'
"powerline symbols
if !exists('g:airline_symbols')
let g:airline_symbols = {}
endif
let g:airline_left_sep = 'î‚°'
let g:airline_left_alt_sep = ''
let g:airline_right_sep = ''
let g:airline_right_alt_sep = ''
let g:airline_symbols.branch = 'î‚ '
let g:airline_symbols.readonly = 'î‚¢'
let g:airline_symbols.linenr = 'î‚¡'
let g:airline#extensions#tabline#enabled=1
let g:airline#extensions#tabline#left_sep = 'î‚°'
let g:airline#extensions#tabline#left_alt_sep = '>'
let g:airline_detect_iminsert=0
let g:neocomplcache_enable_at_startup=1
let g:neocomplcache_enable_smart_case=1
" Enable heavy features.
" Use camel case completion.
"let g:neocomplcache_enable_camel_case_completion = 1
" Use underbar completion.
"let g:neocomplcache_enable_underbar_completion = 1
colorscheme wombat256mod
syntax on
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment