diff --git a/home/vim/default.nix b/home/vim/default.nix index 0574e38..3561f14 100644 --- a/home/vim/default.nix +++ b/home/vim/default.nix @@ -84,6 +84,7 @@ in gitsigns-nvim # Fast git UI integration which-key-nvim # Show available mappings telescope-fzf-native-nvim # Use 'fzf' fuzzy matching algorithm + telescope-lsp-handlers-nvim # Use 'telescope' for various LSP actions telescope-nvim # Fuzzy finder interface ]; diff --git a/home/vim/plugin/settings/telescope.vim b/home/vim/plugin/settings/telescope.vim index 4f7aeb6..4731b39 100644 --- a/home/vim/plugin/settings/telescope.vim +++ b/home/vim/plugin/settings/telescope.vim @@ -13,4 +13,5 @@ telescope.setup({ }) telescope.load_extension("fzf") +telescope.load_extension("lsp_handlers") EOF