diff options
author | Max Christian Pohle | 2017-12-18 23:37:08 +0100 |
---|---|---|
committer | Max Christian Pohle | 2017-12-18 23:37:08 +0100 |
commit | ccc5235bee1fb4995369cfceec4be18be5b6ba6f (patch) | |
tree | efc98112388898aba21b1b8c1ff2b677ae143db2 | |
parent | e4367a3254756d66d8d62500577dee81e0a316bb (diff) | |
download | vim-karlmarks-ccc5235bee1fb4995369cfceec4be18be5b6ba6f.tar.bz2 vim-karlmarks-ccc5235bee1fb4995369cfceec4be18be5b6ba6f.zip |
Fixed termencoding error message
-rw-r--r-- | vimrc-full | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -39,7 +39,7 @@ endif | |||
39 | if has("multi_byte") | 39 | if has("multi_byte") |
40 | scriptencoding utf-8 | " tell vim that we are using utf-8 here | 40 | scriptencoding utf-8 | " tell vim that we are using utf-8 here |
41 | set encoding=utf-8 | " we need default utf-8 encoding to use cool chars as line break and so on (see below) | 41 | set encoding=utf-8 | " we need default utf-8 encoding to use cool chars as line break and so on (see below) |
42 | set termencoding=&encoding | " once we use special chars we assume everybody uses a terminal supporting those | 42 | let &termencoding=&encoding | " once we use special chars we assume everybody uses a terminal supporting those |
43 | 43 | ||
44 | set fillchars+=fold:\— | " | 44 | set fillchars+=fold:\— | " |
45 | set fillchars+=vert:\║ | " cool vertical split char | 45 | set fillchars+=vert:\║ | " cool vertical split char |
@@ -677,6 +677,7 @@ Plug 'NLKNguyen/papercolor-theme' | " the one I like the most | |||
677 | Plug 'mhinz/vim-signify' | " uses the sign column to indicate added, modified and removed lines | 677 | Plug 'mhinz/vim-signify' | " uses the sign column to indicate added, modified and removed lines |
678 | Plug 'tpope/vim-fugitive' | " the most complete GIT integration plugin | 678 | Plug 'tpope/vim-fugitive' | " the most complete GIT integration plugin |
679 | Plug 'godlygeek/tabular' | " align code on a sign, like :Tab/= | 679 | Plug 'godlygeek/tabular' | " align code on a sign, like :Tab/= |
680 | Plug 'severin-lemaignan/vim-minimap' | ||
680 | Plug 'tpope/vim-surround' | " plugin makes cs"' inside a line replace " with ' | 681 | Plug 'tpope/vim-surround' | " plugin makes cs"' inside a line replace " with ' |
681 | let g:signify_vcs_list = [ 'git' ] | " use signify only with git (improves speed when loading buffers, see :h signify) | 682 | let g:signify_vcs_list = [ 'git' ] | " use signify only with git (improves speed when loading buffers, see :h signify) |
682 | let g:signify_cursorhold_insert = 1 | 683 | let g:signify_cursorhold_insert = 1 |