From b0bbb710438cea8616b3154829ef075cd4474bcc Mon Sep 17 00:00:00 2001 From: Szwendacz99 Date: Mon, 10 Oct 2022 07:23:47 +0200 Subject: [PATCH] clipboard --- init.vim | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/init.vim b/init.vim index 9bf8b5e..3120c0e 100644 --- a/init.vim +++ b/init.vim @@ -177,14 +177,14 @@ set autoindent " indent a new line the same amount as the line just set number " add line numbers set relativenumber " add relative line numbers set wildmode=longest,list " get bash-like tab completions -set cc=80 " set an 80 column border for good coding style +set cc=80 " set an 80 column border for good coding style filetype plugin indent on "allow auto-indenting depending on file type syntax on " syntax highlighting -"set mouse=a " enable mouse click -set clipboard=unnamedplus " using system clipboard +"set mouse=a " enable mouse click +set clipboard+=unnamedplus " using system clipboard filetype plugin on set cursorline " highlight current cursorline set ttyfast " Speed up scrolling in Vim " set spell " enable spell check (may need to download language package) -set noswapfile " disable creating swap file +set noswapfile " disable creating swap file " set backupdir=~/.cache/vim " Directory to store backup files.