[vim] use better list characters
This commit is contained in:
parent
1e5f932895
commit
b0e08d3e01
1 changed files with 8 additions and 2 deletions
10
vim/vimrc
10
vim/vimrc
|
@ -23,12 +23,18 @@ set nocompatible
|
|||
set incsearch
|
||||
set laststatus=2
|
||||
set lazyredraw
|
||||
set listchars=tab:›\ ,trail:·
|
||||
set list
|
||||
if has('multi_byte') && &encoding ==# 'utf-8'
|
||||
let &listchars = 'tab:▸ ,extends:❯,precedes:❮,trail:·'
|
||||
let &showbreak = '↪ '
|
||||
else
|
||||
let &listchars = 'tab:> ,extends:>,precedes:<,trail:-'
|
||||
let &showbreak = '-> '
|
||||
endif
|
||||
set modelines=0
|
||||
set number
|
||||
set scrolloff=5
|
||||
set shiftwidth=4
|
||||
let &showbreak = '↪ '
|
||||
set showmatch
|
||||
set noshowmode
|
||||
set sidescrolloff=5
|
||||
|
|
Loading…
Add table
Reference in a new issue