diff options
author | Tom Ryder <tom@sanctum.geek.nz> | 2018-06-21 15:23:34 +1200 |
---|---|---|
committer | Tom Ryder <tom@sanctum.geek.nz> | 2018-06-21 15:23:34 +1200 |
commit | bfa355ccda8e63923092d67458450fd5ffa4366f (patch) | |
tree | db87e6b0f756c94d40a22033630f6f9b914ec2f9 | |
parent | Correct two .vimrc spelling errors (diff) | |
download | dotfiles-bfa355ccda8e63923092d67458450fd5ffa4366f.tar.gz dotfiles-bfa355ccda8e63923092d67458450fd5ffa4366f.zip |
Remove encoding .vimrc settings
* 'encoding' defaults to locale, which makes sense
* `scriptencoding` is only necessary if there's UTF-8 encoded stuff in
the file, and there isn't (yet)
-rw-r--r-- | vim/vimrc | 6 |
1 files changed, 0 insertions, 6 deletions
@@ -4,12 +4,6 @@ " own without the accompanying plugins to which it refers near the end of this " file, but you'll get errors for some of the leader maps, for example. -" Use UTF-8 by default wherever possible -if has('multi_byte') - set encoding=utf-8 - scriptencoding utf-8 -endif - " Load filetype-specific plugins, indent settings, and syntax highlighting if has('autocmd') filetype plugin indent on |