diff options
author | NeodarZ <neodarz@neodarz.ovh> | 2017-02-16 01:28:15 +0100 |
---|---|---|
committer | NeodarZ <neodarz@neodarz.ovh> | 2017-02-16 01:28:15 +0100 |
commit | 07643e33796578d55456c0c360b4f07b5db3fe21 (patch) | |
tree | 4eb20323a37fa83f3d757c360d5567cce51952ee /vim/.vim | |
parent | 32b97465570cc5b758f399d96c95586390fd2e4f (diff) | |
download | dotfiles_ascii-07643e33796578d55456c0c360b4f07b5db3fe21.tar.xz dotfiles_ascii-07643e33796578d55456c0c360b4f07b5db3fe21.zip |
Fix tab error and add utf-8 (it's buggy)
Diffstat (limited to '')
-rw-r--r-- | vim/.vimrc | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -18,6 +18,10 @@ " must be first, because it changes other options as a side effect set nocompatible + +scriptencoding utf-8 +set encoding=utf-8 + " security set modelines=0 @@ -148,7 +152,7 @@ set cursorline " so invisibles set list set listchars= -set listchars+=tab:𐄙\ +set listchars+=tab:\ \ set listchars+=trail:· set listchars+=extends:» set listchars+=precedes:« |