This commit is contained in:
Robert 2024-02-15 17:17:25 +01:00
parent 4e089dffda
commit 3907643c59

View file

@ -1,6 +1,4 @@
scriptencoding utf-8 scriptencoding utf-8
" Function: s:get_random_offset {{{1
function! s:get_random_offset(max) abort function! s:get_random_offset(max) abort
return str2nr(matchstr(reltimestr(reltime()), '\.\zs\d\+')[1:]) % a:max return str2nr(matchstr(reltimestr(reltime()), '\.\zs\d\+')[1:]) % a:max
endfunction endfunction
@ -55,7 +53,7 @@ function! startify#fortune#cowsay(...) abort
let quote = startify#fortune#quote() let quote = startify#fortune#quote()
endif endif
let boxed_quote = startify#fortune#boxed(quote) let boxed_quote = startify#fortune#boxed(quote)
return boxed_quote + s:cow return boxed_quote + s:amogus
endfunction endfunction
" Function: #predefined_quotes {{{1 " Function: #predefined_quotes {{{1
@ -73,6 +71,29 @@ let s:cow = [
\ ' || ||', \ ' || ||',
\ ] \ ]
let s:amogus = [
\ ' o',
\ ' o ___________',
\ ' o / \',
\ ' / ______ \',
\ ' / / \ \',
\ ' | ( ) \',
\ ' / \______/ |',
\ ' | |',
\ ' / \',
\ ' | |',
\ ' | |',
\ ' / |',
\ ' | |',
\ ' | _______ |',
\ ' ____/ / \ |',
\ ' / | | |',
\ ' | / ____/ |',
\ ' \_________/ / |',
\ ' \ __/',
\ ' \_______/'
\ ]
let g:startify_fortune_use_unicode = &encoding == 'utf-8' && get(g:, 'startify_fortune_use_unicode') let g:startify_fortune_use_unicode = &encoding == 'utf-8' && get(g:, 'startify_fortune_use_unicode')
let s:char_top_bottom = ['-', '─'][g:startify_fortune_use_unicode] let s:char_top_bottom = ['-', '─'][g:startify_fortune_use_unicode]