From 4cd3feda3aa9fab74efe1d15439e0aab8e7a497c Mon Sep 17 00:00:00 2001 From: Marty Oehme Date: Sun, 17 Nov 2019 23:03:17 +0100 Subject: [PATCH] Switch to official notational velocity vim plugin It works with fzf, and will use smartcase for its search. Since the setup is not using skim anymore, the official plugin will do. --- .config/nvim/init.vim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.config/nvim/init.vim b/.config/nvim/init.vim index eaf1f3a..1746586 100644 --- a/.config/nvim/init.vim +++ b/.config/nvim/init.vim @@ -41,7 +41,7 @@ Plug 'christoomey/vim-tmux-navigator' " into / out of focus (requires number & relativenumber to be set) Plug 'jeffkreeftmeijer/vim-numbertoggle' -" " Workflow +" " editing Workflow Plug 'tpope/vim-commentary' " easily toggle comments for lines, paragraphs etc with gc Plug 'tommcdo/vim-exchange' " adds exchange operator with cx. common use: cxiw . on 2 words to switch Plug 'tpope/vim-surround' " lets you change surrounding things with cs (or ds to del, ys to add) @@ -54,7 +54,7 @@ Plug 'Xuyuanp/nerdtree-git-plugin', { 'on': 'NERDTreeToggle' } " show git status " Fuzzy matching Plug 'junegunn/fzf', { 'dir': '~/.fzf', 'do': './install --bin' } Plug 'junegunn/fzf.vim' -Plug 'marty-oehme/notational-fzf-vim', { 'branch': 'origin/switch-fzf-to-skim' } +Plug 'alok/notational-fzf-vim' Plug 'dyng/ctrlsf.vim' " Language Integration