summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2022-02-05 16:01:27 -0500
committerJesse Luehrs <doy@tozt.net>2022-02-07 19:02:53 -0500
commit9ba3a41b193d8ff941ce4df122c7c73c00e645d4 (patch)
treec72ee20684bee7eb1a3624edffe8a7789fde7764
parentf0ccbf6b2c6f8727d878ef5e01d2ced3b9066e76 (diff)
downloadconf-9ba3a41b193d8ff941ce4df122c7c73c00e645d4.tar.gz
conf-9ba3a41b193d8ff941ce4df122c7c73c00e645d4.zip
fix escaping
-rw-r--r--vimrc2
1 files changed, 1 insertions, 1 deletions
diff --git a/vimrc b/vimrc
index b16d2ce..ff21fa4 100644
--- a/vimrc
+++ b/vimrc
@@ -142,7 +142,7 @@ let g:startify_custom_indices = [
\'!', '@', '#', '$', '%', '^', '&', '*', '(', ')'
\]
let g:startify_custom_header = []
-let s:fortune = system('fortune -n200 -s ~/.local/share/fortune | grep -v -E "^$"')
+let s:fortune = system('fortune -n200 -s ~/.local/share/fortune | grep -v -E "^\$"')
let g:startify_custom_footer = [''] + map(split(s:fortune, '\n'), '" ".v:val')
" }}}
" textobj {{{