Skip to content

Commit

Permalink
Add vimrc
Browse files Browse the repository at this point in the history
  • Loading branch information
Matt Jarvis committed Sep 16, 2015
1 parent fab8fe7 commit 4d9955c
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions vimrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
set tabstop=4
set shiftwidth=4
set expandtab
call pathogen#infect()
syntax on
filetype plugin indent on
" Statusline stuff
" Using vim-airline - https://github.com/bling/vim-airline
set laststatus=2
let g:airline_theme='powerlineish'
let g:airline_powerline_fonts=1
" let g:airline_left_sep = ''
" let g:airline_right_sep = ''
" let g:airline_branch_prefix = '⭠'
" let g:airline_readonly_symbol = '⭤'
" let g:airline_linecolumn_prefix = '⭡'
" let g:airline_paste_symbol = 'ρ'
let g:airline_detect_whitespace=0
let g:airline#extensions#tabline#enabled = 1
" Ultisnips
" Trigger configuration. Do not use <tab> if you use
" https://github.com/Valloric/YouCompleteMe.
let g:UltiSnipsExpandTrigger="<tab>"
let g:UltiSnipsJumpForwardTrigger="<c-b>"
let g:UltiSnipsJumpBackwardTrigger="<c-z>"
" If you want :UltiSnipsEdit to split your window.
let g:UltiSnipsEditSplit="vertical"

0 comments on commit 4d9955c

Please sign in to comment.