Last active
August 8, 2016 08:30
-
-
Save gauteh/4e7767ebf2ebcaca963367fabf655c70 to your computer and use it in GitHub Desktop.
show favex entries in startify
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
" Bookmarks and FavEx: combining startify and FavEx | |
let g:startify_bookmarks = [] | |
" \ '~/.vim/vimrc', | |
" \ ] | |
for line in readfile (expand('~/.vim/bundle/FavEx/favlist')) | |
if line !~ '\"' && line != "" | |
call add (g:startify_bookmarks, line) | |
endif | |
endfor |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment