diff options
| author | Miquel Sabaté <mikisabate@gmail.com> | 2013-12-10 15:46:29 +0100 |
|---|---|---|
| committer | Miquel Sabaté <mikisabate@gmail.com> | 2013-12-10 15:46:29 +0100 |
| commit | aaa45885b8d6e56ea37c3ef57af94efa90ae7f18 (patch) | |
| tree | a78e10ee4f3702f097d006d45806c4700f37ae7d /vimrc | |
| parent | 7e609410d74640623e6545ea2069cfdcd1039624 (diff) | |
| download | dotfiles-aaa45885b8d6e56ea37c3ef57af94efa90ae7f18.tar.gz dotfiles-aaa45885b8d6e56ea37c3ef57af94efa90ae7f18.zip | |
vim: more updates on the vimrc file
Diffstat (limited to 'vimrc')
| -rw-r--r-- | vimrc | 16 |
1 files changed, 15 insertions, 1 deletions
@@ -7,7 +7,7 @@ syntax on set encoding=utf-8 "" -" Vim UI +" Global stuff " Show matched result. set showmatch @@ -21,6 +21,20 @@ set number " Don't show the mode, since this will be shown by the status line. set noshowmode +" Make sure that unsaved buffers that are to be put in the background are +" must save first error doesn't come up) +set hidden + +" Allow backspacing over everything in insert mode +set backspace=indent,eol,start + +" Don't wrap lines +set nowrap + +" I don't like the backup and the swapfile thingies. +set nobackup +set noswapfile + "" " Colorscheme |
