-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Matt Jarvis
committed
Sep 16, 2015
1 parent
fab8fe7
commit 4d9955c
Showing
1 changed file
with
27 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" |