neovim: replaced ctrlp with fzf-vim

This commit is contained in:
Serĉanto de Scio 2021-06-02 12:23:10 +10:00
parent 412fca8f5a
commit 1612a194c7
Signed by: sercanto
GPG key ID: 7DBA9F5689EFB6AA

View file

@ -9,7 +9,8 @@
packages.myPlugins = with pkgs.vimPlugins; { packages.myPlugins = with pkgs.vimPlugins; {
start = [ start = [
airline # Lean & mean status/tabline for vim that's light as air 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 haskell-vim # Syntax Highlighting and Indentation for Haskell
indentLine # Display thin vertical lines at each indentation level indentLine # Display thin vertical lines at each indentation level
neocomplete-vim # Keyword completion system neocomplete-vim # Keyword completion system
@ -50,6 +51,7 @@
hi SpellBad cterm=underline " Set the spell checking highlight style hi SpellBad cterm=underline " Set the spell checking highlight style
hi SpellBad ctermbg=NONE " Set the spell checking highlight background hi SpellBad ctermbg=NONE " Set the spell checking highlight background
match ErrorMsg '\s\+$' " match ErrorMsg '\s\+$' "
nnoremap <silent> <C-p> :Files<CR>
let g:airline_powerline_fonts = 1 " Use powerline fonts let g:airline_powerline_fonts = 1 " Use powerline fonts
let g:airline_theme='one' " Set the airline theme let g:airline_theme='one' " Set the airline theme