Активиране във vim “copy&paste в Debian 9”

vim /etc/vim/vimrc.local

Копирайте от долу конфигурацията и с клавишната комбинация Shift+Inserte вкарайте текста в конфигурационния файл.

" This file loads the default vim options at the beginning and prevents
" that they are being loaded again later. All other options that will beset,
" are added, or overwrite the default settings. Add as many options as you
" whish at the end of this file.

" Load the defaults
source /usr/share/vim/vim80/defaults.vim

" Prevent the defaults from being loaded again later, if the user doesn't
" have a local vimrc (~/.vimrc)
let skip_defaults_vim = 1


" Set more options (overwrites settings from /usr/share/vim/vim80/defaults.vim)
" Add as many options as you whish

" Set the mouse mode to 'r'
if has('mouse')
  set mouse=r
  endif

Leave a Reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.