# HG changeset patch # User Meredith Howard # Date 1406821311 14400 # Node ID 3a676c8eaafebd1d5af913651d85f453a58a8e70 # Parent ffbf97e1e3eb424b1841f7f85351ecdff9c7591b Set unicode stuff only if we think it's available, use better fold and vsplit chars diff --git a/.vimrc b/.vimrc --- a/.vimrc +++ b/.vimrc @@ -143,7 +143,11 @@ set enc=utf-8 set hlsearch set ic smartcase -set lcs=tab:→·,trail:· +if has('gui_running') || $LANG =~ 'UTF-8' + set lcs=tab:⇥·,trail:· + " eol:↩ not as useful as trail i think + set fillchars=fold:∷,vert:│ +endif set ve=block