From 1612a194c783b8c337d1dc80ea223086cd6ec099 Mon Sep 17 00:00:00 2001 From: Craige McWhirter Date: Wed, 2 Jun 2021 12:23:10 +1000 Subject: [PATCH] neovim: replaced ctrlp with fzf-vim --- profiles/neovim.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/profiles/neovim.nix b/profiles/neovim.nix index 657cc05..36c7f85 100644 --- a/profiles/neovim.nix +++ b/profiles/neovim.nix @@ -9,7 +9,8 @@ packages.myPlugins = with pkgs.vimPlugins; { start = [ airline # Lean & mean status/tabline for vim that's light as air - ctrlp # Full path fuzzy file, buffer, mru, tag, ... finder for Vim + fugitive # Vim Git wrapper + fzf-vim # Full path fuzzy file, buffer, mru, tag, finder for Vim haskell-vim # Syntax Highlighting and Indentation for Haskell indentLine # Display thin vertical lines at each indentation level neocomplete-vim # Keyword completion system @@ -50,6 +51,7 @@ hi SpellBad cterm=underline " Set the spell checking highlight style hi SpellBad ctermbg=NONE " Set the spell checking highlight background match ErrorMsg '\s\+$' " + nnoremap :Files let g:airline_powerline_fonts = 1 " Use powerline fonts let g:airline_theme='one' " Set the airline theme