Skip to content

Instantly share code, notes, and snippets.

@gauteh
Last active August 8, 2016 08:30
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 gauteh/4e7767ebf2ebcaca963367fabf655c70 to your computer and use it in GitHub Desktop.
Save gauteh/4e7767ebf2ebcaca963367fabf655c70 to your computer and use it in GitHub Desktop.
show favex entries in startify
" 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