]> git.zndr.dk Git - dotfiles.git/commitdiff
Vim encoding problem
authorJannik Zander <59698@grundfos.com>
Fri, 13 Jul 2018 07:40:30 +0000 (09:40 +0200)
committerJannik Zander <59698@grundfos.com>
Fri, 13 Jul 2018 07:40:30 +0000 (09:40 +0200)
.vim/gvimrc
.vim/vimrc

index 49e9160d5cb96a5f8b10e95b8a0b4537b9366db7..66b16b341c8204cd2305f419d19d0c9fc67ad1c7 100644 (file)
@@ -1,6 +1,13 @@
 
 " Use :help 'option' to see the documentation for the given option.
 
+" gui
+set guioptions+=a
+set guioptions-=m "no menu bar
+set guioptions-=T "no toolbar
+set guioptions-=r "no scroolbar
+set noguipty
+
 " mouse
 set mousehide
 set mouse=a
@@ -10,13 +17,6 @@ set mousemodel=popup
 map <S-Insert> <MiddleMouse>
 map! <S-Insert> <MiddleMouse>
 
-" gui
-set guioptions+=a
-set guioptions-=m "no menu bar
-set guioptions-=T "no toolbar
-set guioptions-=r "no scroolbar
-set noguipty
-
 " colors
 highlight normal guibg=black guifg=white
 highlight linenr guifg=grey
index 875ce5f96cf0378eb296e73fbb2b9dffb627e36c..92928f8e5bbc10172f2d0ecf28dccf2efb5d44da 100644 (file)
@@ -88,7 +88,7 @@ if has("win32")
 endif
 set fileformats=unix,dos,mac
 set fileignorecase
-set encoding=utf-8
+"set encoding=utf-8
 
 " colors
 set t_Co=256
@@ -99,7 +99,7 @@ highlight linenr ctermfg=grey
 " fonts
 set list
 if has('multi_byte') && &encoding ==# 'utf-8'
-  let &listchars = 'tab:Ã\83¢Ã\82Â\96Ã\82¸ ,extends:Ã\83¢Ã\82Â\9dÃ\82¯,precedes:Ã\83¢Ã\82Â\9dÃ\82®,nbsp:Ã\82±'
+  let &listchars = 'tab:Ã\83Â\83Ã\82¢Ã\83Â\82Ã\82Â\96Ã\83Â\82Ã\82¸ ,extends:Ã\83Â\83Ã\82¢Ã\83Â\82Ã\82Â\9dÃ\83Â\82Ã\82¯,precedes:Ã\83Â\83Ã\82¢Ã\83Â\82Ã\82Â\9dÃ\83Â\82Ã\82®,nbsp:Ã\83Â\83Ã\82Â\82Ã\82±'
 else
   let &listchars = 'tab:> ,extends:>,precedes:<,nbsp:.'
 endif