From eff9c446c424239d58759a1102455fefab6de3c8 Mon Sep 17 00:00:00 2001 From: Szwendacz99 Date: Sat, 8 Oct 2022 09:15:57 +0200 Subject: [PATCH] add cursword and snippets plugins, small changes --- init.vim | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/init.vim b/init.vim index 4d48863..ca218d2 100644 --- a/init.vim +++ b/init.vim @@ -15,6 +15,8 @@ Plug 'Glench/Vim-Jinja2-Syntax' Plug 'vmware-archive/salt-vim' Plug 'vim-airline/vim-airline' Plug 'vim-airline/vim-airline-themes' +Plug 'honza/vim-snippets' +Plug 'itchyny/vim-cursorword' "Fuzzy search by Telescope and its dependencies: Plug 'nvim-lua/plenary.nvim' @@ -138,7 +140,7 @@ endif set encoding=UTF-8 set showmatch " show matching set ignorecase " case insensitive -"set mouse=v " middle-click paste with +set mouse=v " middle-click paste with set hlsearch " highlight search set incsearch " incremental search set tabstop=4 " number of columns occupied by a tab @@ -158,5 +160,5 @@ 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.