aboutsummaryrefslogtreecommitdiff
path: root/vimrc-full
diff options
context:
space:
mode:
authorMax Christian Pohle2017-12-18 23:37:08 +0100
committerMax Christian Pohle2017-12-18 23:37:08 +0100
commitccc5235bee1fb4995369cfceec4be18be5b6ba6f (patch)
treeefc98112388898aba21b1b8c1ff2b677ae143db2 /vimrc-full
parente4367a3254756d66d8d62500577dee81e0a316bb (diff)
downloadvim-ccc5235bee1fb4995369cfceec4be18be5b6ba6f.tar.bz2
vim-ccc5235bee1fb4995369cfceec4be18be5b6ba6f.zip
Fixed termencoding error message
Diffstat (limited to 'vimrc-full')
-rw-r--r--vimrc-full3
1 files changed, 2 insertions, 1 deletions
diff --git a/vimrc-full b/vimrc-full
index 11ca80e..1d12dc6 100644
--- a/vimrc-full
+++ b/vimrc-full
@@ -39,7 +39,7 @@ endif
39if has("multi_byte") 39if 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
677Plug 'mhinz/vim-signify' | " uses the sign column to indicate added, modified and removed lines 677Plug 'mhinz/vim-signify' | " uses the sign column to indicate added, modified and removed lines
678Plug 'tpope/vim-fugitive' | " the most complete GIT integration plugin 678Plug 'tpope/vim-fugitive' | " the most complete GIT integration plugin
679Plug 'godlygeek/tabular' | " align code on a sign, like :Tab/= 679Plug 'godlygeek/tabular' | " align code on a sign, like :Tab/=
680Plug 'severin-lemaignan/vim-minimap'
680Plug 'tpope/vim-surround' | " plugin makes cs"' inside a line replace " with ' 681Plug 'tpope/vim-surround' | " plugin makes cs"' inside a line replace " with '
681let g:signify_vcs_list = [ 'git' ] | " use signify only with git (improves speed when loading buffers, see :h signify) 682let g:signify_vcs_list = [ 'git' ] | " use signify only with git (improves speed when loading buffers, see :h signify)
682let g:signify_cursorhold_insert = 1 683let g:signify_cursorhold_insert = 1
..