From 1d722c72f9259afa4b3d3bfaec7f6a8b1f90d620 Mon Sep 17 00:00:00 2001 From: Marco Hinz Date: Thu, 19 Jan 2017 00:47:28 +0100 Subject: [PATCH] Fortune: add new quotes --- autoload/startify/fortune.vim | 2 ++ 1 file changed, 2 insertions(+) diff --git a/autoload/startify/fortune.vim b/autoload/startify/fortune.vim index 77bb65a..b791e9e 100644 --- a/autoload/startify/fortune.vim +++ b/autoload/startify/fortune.vim @@ -22,6 +22,8 @@ let s:char_bottom_left = ['*', '╰'][s:unicode] let s:quotes = exists('g:startify_custom_header_quotes') \ ? g:startify_custom_header_quotes \ : [ + \ ["Debugging is twice as hard as writing the code in the first place. Therefore, if you write the code as cleverly as possible, you are, by definition, not smart enough to debug it.", '', '- Brian Kernighan'], + \ ["If you don't finish then you're just busy, not productive."], \ ['Adapting old programs to fit new machines usually means adapting new machines to behave like old ones.', '', '- Alan Perlis'], \ ['Fools ignore complexity. Pragmatists suffer it. Some can avoid it. Geniuses remove it.', '', '- Alan Perlis'], \ ['It is easier to change the specification to fit the program than vice versa.', '', '- Alan Perlis'],