わけあってリモートサーバでvimでがんがんコードの編集する仕事をしており、あと単調なので、なんかドキドキしたいと思い、1時間ごとにcolorschemeを勝手に変えるvimrcの断片を書いたのでメモ 追記 2017/05/15 id:foooomioさんありがとうございます!助かりました! function! s:ColorSchemeLottery() let schemes = ["koehler", "zellner", "peachpuff", "slate", "murphy", "delek"] let l = len(schemes) let i = strftime("%H") % l return schemes[i] endfunction execute 'colorscheme ' . s:ColorSchemeLottery() これでリストだけ更新すればよくなっ