Skip to content

Instantly share code, notes, and snippets.

@olimay
Created June 11, 2016 21:26
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 olimay/56b2443cdef4677cf3d13fac07d98eeb to your computer and use it in GitHub Desktop.
Save olimay/56b2443cdef4677cf3d13fac07d98eeb to your computer and use it in GitHub Desktop.
siopao dotfiles
set nocompatible
filetype off
set rtp+=~/.vim/bundle/vundle/
call vundle#rc()
Bundle 'gmarik/vundle'
Bundle 'tpope/vim-sensible'
Bundle 'tpope/vim-fugitive'
Bundle 'tpope/vim-dispatch'
Bundle 'tpope/vim-sleuth'
Bundle 'scrooloose/nerdtree'
Bundle 'scrooloose/syntastic'
Bundle 'scrooloose/vim-statline'
Bundle 'mbbill/code_complete'
Bundle 'wincent/terminus'
" themes
Bundle 'thinca/vim-guicolorscheme'
Bundle 'altercation/vim-colors-solarized'
Bundle 'atelierbram/vim-colors_atelier-schemes'
" execute pathogen#infect()
" syntax on
set background=dark
" set background=light
" let g:solarized_termcolors = 256
colorscheme solarized
filetype plugin on
syntax on
set autoindent
set number
set ruler
set shiftwidth=2
set tabstop=2
set expandtab
set showmatch
set matchtime=3
set cc=80
set ssop-=options
set ssop-=folds
set statusline+=%#warningmsg#
set statusline+=%{SyntasticStatuslineFlag()}
set statusline+=%*
let g:syntastic_always_populate_loc_list = 1
let g:syntastic_auto_loc_list = 1
let g:syntastic_check_on_open = 1
let g:syntastic_check_on_wq = 0
let g:syntastic_html_tidy_ignore_errors = [
\ 'trimming empty <i>',
\ 'trimming empty <span>',
\ '<input> proprietary attribute \"autocomplete\"',
\ 'proprietary attribute \"role\"',
\ 'proprietary attribute \"hidden\"',
\ 'proprietary attribute \"ng-',
\ '<svg> is not recognized!',
\ 'discarding unexpected <svg>',
\ 'discarding unexpected </svg>',
\ '<rect> is not recognized!',
\ 'discarding unexpected <rect>'
\ ]
let syntastic_mode_map = { 'passive_filetypes': ['html'] }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment