aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2018-07-21 01:58:23 +1200
committerTom Ryder <tom@sanctum.geek.nz>2018-07-21 01:58:23 +1200
commit27a360bb5ce30e7b41ae3afcde0dad17b02e5903 (patch)
tree9bd255a507f62f83734607c0b4aa19689873b9db
parentTry going without 'display' for a little while (diff)
downloaddotfiles-27a360bb5ce30e7b41ae3afcde0dad17b02e5903.tar.gz
dotfiles-27a360bb5ce30e7b41ae3afcde0dad17b02e5903.zip
Remove unneeded UNIX test
Hey, these days GNU grep could be available on another system...
-rw-r--r--vim/vimrc2
1 files changed, 1 insertions, 1 deletions
diff --git a/vim/vimrc b/vim/vimrc
index 4e9fd8ec..1f71e4ea 100644
--- a/vim/vimrc
+++ b/vim/vimrc
@@ -80,7 +80,7 @@ silent! set noesckeys
silent! set formatoptions+=j
" If available, use GNU grep niceties for searching
-if has('unix') && system('grep --version') =~# '^grep (GNU grep)'
+if system('grep --version') =~# '^grep (GNU grep)'
set grepprg=LC_ALL=C\ grep\ -HnRs\ --exclude='.git*'
endif