From ccc5235bee1fb4995369cfceec4be18be5b6ba6f Mon Sep 17 00:00:00 2001 From: Max Christian Pohle Date: Mon, 18 Dec 2017 23:37:08 +0100 Subject: Fixed termencoding error message --- vimrc-full | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/vimrc-full b/vimrc-full index 11ca80e..1d12dc6 100644 --- a/vimrc-full +++ b/vimrc-full @@ -39,7 +39,7 @@ endif if has("multi_byte") scriptencoding utf-8 | " tell vim that we are using utf-8 here set encoding=utf-8 | " we need default utf-8 encoding to use cool chars as line break and so on (see below) - set termencoding=&encoding | " once we use special chars we assume everybody uses a terminal supporting those + let &termencoding=&encoding | " once we use special chars we assume everybody uses a terminal supporting those set fillchars+=fold:\— | " set fillchars+=vert:\║ | " cool vertical split char @@ -677,6 +677,7 @@ Plug 'NLKNguyen/papercolor-theme' | " the one I like the most Plug 'mhinz/vim-signify' | " uses the sign column to indicate added, modified and removed lines Plug 'tpope/vim-fugitive' | " the most complete GIT integration plugin Plug 'godlygeek/tabular' | " align code on a sign, like :Tab/= +Plug 'severin-lemaignan/vim-minimap' Plug 'tpope/vim-surround' | " plugin makes cs"' inside a line replace " with ' let g:signify_vcs_list = [ 'git' ] | " use signify only with git (improves speed when loading buffers, see :h signify) let g:signify_cursorhold_insert = 1 -- cgit v1.2.3