diff options
author | Raphael McSinyx <vn.mcsinyx@gmail.com> | 2016-11-08 11:32:41 +0700 |
---|---|---|
committer | Raphael McSinyx <vn.mcsinyx@gmail.com> | 2016-11-20 16:44:10 +0700 |
commit | 576930c45f2562abe0d8139b1a1f3418d5bb976c (patch) | |
tree | a976e4050a431c972df19ab2d0b1b8cd62ff935e /vim/.vim/vimrc | |
parent | 76e366782fc5cf88c14a8feb34874afa50a3c214 (diff) | |
download | dotfiles-576930c45f2562abe0d8139b1a1f3418d5bb976c.tar.gz |
Update 20161108
Diffstat (limited to 'vim/.vim/vimrc')
-rwxr-xr-x | vim/.vim/vimrc | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/vim/.vim/vimrc b/vim/.vim/vimrc index cf1d376..b6caf91 100755 --- a/vim/.vim/vimrc +++ b/vim/.vim/vimrc @@ -12,7 +12,12 @@ set showcmd set nostartofline set ruler set confirm -set list listchars+=space:·,tab:\ \ +set list +if has("patch-7.4.710") + set listchars+=space:·,tab:\ \ +else + set listchars+=tab:├─ +endif set tabstop=8 expandtab shiftwidth=4 softtabstop=4 smarttab set omnifunc=syntaxcomplete#Complete set dictionary=/usr/share/dict/words |