Created
November 14, 2016 14:58
-
-
Save onjin/ccbede3d1e6eef84ba4a3500b116a3aa to your computer and use it in GitHub Desktop.
This file contains hidden or 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
NeoBundle 'chrisgillis/vim-bootstrap3-snippets' | |
NeoBundle 'vim-scripts/todo-txt.vim' | |
NeoBundle 'farseer90718/vim-taskwarrior' | |
NeoBundle 'vim-perl/vim-perl' | |
NeoBundle 'scrooloose/syntastic' |
This file contains hidden or 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
let g:pep8_ignore="E501,W601" | |
if neobundle#tap('vim-startify') "{{{ | |
autocmd User Startified setlocal cursorline | |
let g:startify_bookmarks = [ | |
\ { 'l': '~/.vimrc.local' }, | |
\ { 'p': '~/.vimrc.bundles.local' }, | |
\ { 'v': '~/.vim/' }, | |
\ { 'i': '~/.config/i3/config' }, | |
\ { 's': '~/.screenlayout/' }, | |
\ ] | |
let g:startify_custom_header = | |
\ map(split(system('task'), '\n'), '" ". v:val') + [''] | |
let g:startify_change_to_vcs_root = 1 | |
call neobundle#untap() | |
endif " }}} | |
if neobundle#tap('vim-notes') "{{{ | |
let g:notes_directories = ['~/Dropbox/Notes', '~/Dropbox/Shared.Notes'] | |
call neobundle#untap() | |
endif "}}} | |
if neobundle#tap('scrooloose/syntastic.git') "{{{ | |
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 | |
}}} | |
endif "}}} | |
let g:goyo_width = '85%' | |
let g:goyo_height = '85%' | |
let g:goyo_linenr = 1 | |
set norelativenumber |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment