X-Git-Url: https://git.rmz.io/dotfiles.git/blobdiff_plain/ccdacf21dc7d84e54dc22e5398d5ecb4fb2912ec..00265670bcd9bfb48f74b6a8f30077f93fc88e86:/vim/vimrc diff --git a/vim/vimrc b/vim/vimrc index d5b0610..9af477e 100644 --- a/vim/vimrc +++ b/vim/vimrc @@ -224,7 +224,9 @@ set ttyfast " using the mouse {{{2 set mouse=rnv " list of flags for using the mouse -set ttymouse=xterm " type of mouse +if !has('nvim') + set ttymouse=xterm " type of mouse +endif " messages and info {{{2 set showcmd " Show (partial) command in status line. @@ -255,7 +257,7 @@ set formatoptions+=l " do not wrap lines that have been longer when starting set formatoptions+=t " Auto-wrap text using textwidth set formatoptions-=o " Do not insert comment leader after hitting o or O in normal mode -set nrformats=hex " number formats recognized for CTRL-A and CTRL-X commands +set nrformats-=octal " don't inc/dec octal numbers with ^[AX] set complete=. " scan the current buffer ( 'wrapscan' is ignored) set complete+=w " scan buffers from other windows