diff options
| author | Robert Günzler <r@gnzler.io> | 2020-06-17 18:08:14 +0200 |
|---|---|---|
| committer | Robert Günzler <r@gnzler.io> | 2020-06-17 18:08:14 +0200 |
| commit | 37be094bfa609477b3e0bd520a91517ccf1c2ede (patch) | |
| tree | 49b65d568367618efb6681aa72a50c43e6763643 /.vim | |
| parent | cf0b38afa81a3ea4bb6a2c479328ad826aa2b87a (diff) | |
vim: update listchars
Diffstat (limited to '.vim')
| -rw-r--r-- | .vim/general.vim | 9 | ||||
| -rw-r--r-- | .vim/init.vim | 1 |
2 files changed, 5 insertions, 5 deletions
diff --git a/.vim/general.vim b/.vim/general.vim index 7346abf..a0d416c 100644 --- a/.vim/general.vim +++ b/.vim/general.vim @@ -8,9 +8,9 @@ set inccommand=split set noshowcmd " set autochdir " automatically sets cwd to the dir containing the file in the current buffer set hidden -set nolist -" set lcs+=space:• -" set lcs+=trail:∙ +set nolist listchars+=space:•,trail:¬ +set iskeyword-=- + set encoding=utf-8 nobomb " set nocompatible set number @@ -36,7 +36,7 @@ set updatetime=300 " For conceal markers. if has('conceal') " set conceallevel=2 concealcursor=nv - set conceallevel=2 concealcursor= + set conceallevel=1 concealcursor= endif " centralize vimfiles @@ -61,6 +61,7 @@ endif " some defaults " set ts=8 sts=0 et sw=4 sta +set shiftround set diffopt+=algorithm:patience set path+=expand('%:h:p') diff --git a/.vim/init.vim b/.vim/init.vim index 1cc583b..3d6553d 100644 --- a/.vim/init.vim +++ b/.vim/init.vim @@ -344,7 +344,6 @@ augroup END augroup Init au! - au VimEnter * set iskeyword-=- " au VimEnter * call vista#RunForNearestMethodOrFunction() " au VimEnter * Vista!! |