Last active
December 29, 2016 13:49
-
-
Save muralisc/a27d69c4b44c1f3cc3f50c83f0394e3e to your computer and use it in GitHub Desktop.
Revisions
-
muralisc revised this gist
Dec 29, 2016 . No changes.There are no files selected for viewing
-
muralisc created this gist
Dec 29, 2016 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,38 @@ " load colorscheme depending on the day of month {{{ fu! s:LoadRandomColorScheme() let s:color_file_list = globpath(&runtimepath, 'colors/*.vim' ) let s:color_file_list = substitute(s:color_file_list, '\' , '/', 'g') let s:color_file_list = substitute(s:color_file_list, "\n" , ',', 'g') let s:color_file_list = substitute(s:color_file_list, '\(/[^,]\+/\)' , '', 'g') let s:color_file_list = substitute(s:color_file_list, '\.vim' , '', 'g') " echo s:color_file_list if strlen(s:color_file_list) let s:no_of_commas = substitute(s:color_file_list, '\([^,]\+\)', '', 'g') if s:color_file_list =~ ',' let s:rnd = (strftime( "%d" ) + 0)% ( strlen(s:no_of_commas) +1 ) " echo strlen(s:no_of_commas) let s:loop = 0 while s:loop < s:rnd let s:color_file_list = substitute(s:color_file_list, '^\([^,]\+\),', '', '') let s:loop = s:loop + 1 endwhile " echo s:color_file_list let s:color_file = matchstr(s:color_file_list, '^[^,]\+') " echo s:color_file execute "colorscheme" s:color_file unlet! s:color_file unlet! s:loop unlet! s:rnd endif endif unlet! s:color_file_list unlet! s:self_file endf call s:LoadRandomColorScheme() "}}}