Change Details
| rc/vimrc |
| 3 | 3 | " for its side effects. |
| 4 | 4 | set nocompatible |
| 5 | 5 | |
| 6 | | " use utf8 and latin1 when terminal is utf8 |
| 7 | | if v:lang =~ "utf8$" || v:lang =~ "UTF-8$" |
| 8 | | set fileencodings=utf-8,latin1 |
| 9 | | endif |
| 6 | " check for Byte-Order-Mark, then utf8, and finally assume latin1 |
| 7 | set fileencodings=ucs-bom,utf-8,latin1 |
| 8 | " force encoding when reading/writing with: |
| 9 | " :e|w ++enc=encoding file |
| 10 | 10 | |
| 11 | 11 | " allow backspacing over everything in insert mode |
| 12 | 12 | set backspace=indent,eol,start |
Download the corresponding diff file