From 46a72313f81a3ad6bd7c4ea98d9c7d790eff8932 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Thu, 19 Jul 2018 23:56:20 +1200 Subject: Move 'encoding' .vimrc setting alphabetically --- vim/vimrc | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/vim/vimrc b/vim/vimrc index 9b261986..297fd078 100644 --- a/vim/vimrc +++ b/vim/vimrc @@ -80,11 +80,6 @@ else set display=lastline " Just let it run off the screen if not endif -" If $LANG isn't set and 'encoding' is the default, use UTF-8 -if has('multi_byte') && !exists('$LANG') && &encoding ==# 'latin1' - set encoding=utf-8 -endif - " Don't wait for a key after Escape in insert mode if exists('+esckeys') " Not in Neovim set noesckeys @@ -171,6 +166,11 @@ if has('mksession') set sessionoptions-=options endif +" If $LANG isn't set and 'encoding' is the default, use UTF-8 +if has('multi_byte') && !exists('$LANG') && &encoding ==# 'latin1' + set encoding=utf-8 +endif + " Persistent undo settings if has('persistent_undo') -- cgit v1.2.3