diff options
| author | Anton Bobov <abobov@gmail.com> | 2016-10-14 19:13:49 +0500 |
|---|---|---|
| committer | Anton Bobov <abobov@gmail.com> | 2016-10-14 19:13:49 +0500 |
| commit | eb0fd18ebdb04117c6185b12243109effa36c0b7 (patch) | |
| tree | b98b260e54748692b40672317b9a2aa054ab3483 /files/.vimrc | |
| parent | 3fde1d5434c731dc82a66594738cb1faf9e88e26 (diff) | |
Updates.
- [vim] add break indent
- [mutt] remove attachment re-encoding
- [zhh] change pdf viewer
Diffstat (limited to 'files/.vimrc')
| -rw-r--r-- | files/.vimrc | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/files/.vimrc b/files/.vimrc index e90b06b..785b576 100644 --- a/files/.vimrc +++ b/files/.vimrc @@ -100,6 +100,9 @@ set imsearch=0 set autoread set visualbell t_vb= +if exists('&belloff') + set belloff=all +endif set title " Скрывать буфер редактировании другого set hidden @@ -116,8 +119,6 @@ set backspace=indent,eol,start set number set relativenumber set nostartofline " many jump commands move the cursor to the first non-blank character of a line -" Символ показывающий перенос текста -set showbreak=↵ " Сколько строк оставлять при прокрутке с низу и с боку set scrolljump=4 set scrolloff=4 @@ -190,11 +191,17 @@ set smarttab set shiftround set expandtab set wrap -set linebreak set textwidth=80 set formatoptions=rqnl1j set cpoptions+=J +set linebreak +set showbreak=↵ +set breakindent +if exists('&breakindentopt') + set breakindentopt=shift:2 +endif + " }}} let mapleader="," |
