home: vim: replace 'fzf' with 'telescope'

I like the fact that it uses built-in buffers to preview files.

It also has more inertia behind it, tighter integrations in the
ecosystem.
This commit is contained in:
Bruno BELANYI 2022-03-07 13:05:28 +01:00
parent 5e3bd82f8b
commit 7fec5f870a
4 changed files with 18 additions and 24 deletions

View file

@ -59,8 +59,6 @@ in
vim-qf # Better quick-fix list
# Other wrappers
fzfWrapper # The vim plugin inside the 'fzf' package
fzf-vim # Fuzzy commands
git-messenger-vim # A simple blame window
# LSP and linting
@ -68,7 +66,7 @@ in
null-ls-nvim # LSP integration for linters and formatters
(nvim-treesitter.withPlugins (_: pkgs.tree-sitter.allGrammars)) # Better highlighting
nvim-treesitter-textobjects # More textobjects
plenary-nvim # 'null-ls' dependency
plenary-nvim # 'null-ls', 'telescope' dependency
# Completion
nvim-cmp # Completion engine
@ -80,6 +78,7 @@ in
# UX improvements
gitsigns-nvim # Fast git UI integration
which-key-nvim # Show available mappings
telescope-nvim # Fuzzy finder interface
];
extraConfig = builtins.readFile ./init.vim;