Skip to content

Instantly share code, notes, and snippets.

@tokida
Created May 31, 2014 14:54
Show Gist options
  • Save tokida/3a978d48817b98fb4f18 to your computer and use it in GitHub Desktop.
Save tokida/3a978d48817b98fb4f18 to your computer and use it in GitHub Desktop.
" Startify
" 起動時の画面の設定
" startifyのヘッダー部分に表示する文字列を設定する(dateコマンドを実行して日付を設定している)
let g:startify_custom_header =
\ map(split(system('date'), '\n'), '" ". v:val') + ['','']
let g:startify_files_number = 10
" デフォルトだと、最近使ったファイルの先頭は数字なので、使用するアルファベットを指定
" let g:startify_custom_indices = ['f', 'g', 'h', 'r', 'i', 'o', 'b']
" よく使うファイルをブックマークとして登録しておく
let g:startify_bookmarks = [
\ '~/.vimrc',
\ '~/.gvimrc',
\ '~/.bash_profile',
\ '~/memo/todo.markdown',
\ ]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment