We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8b4eee9 commit 7538a78Copy full SHA for 7538a78
vim/my.nvim/lua/plugins/telescope.lua
@@ -8,22 +8,6 @@ end
8
9
local extensions = {}
10
11
-if loaded('telescope-fzf-native.nvim') then
12
- require('telescope').load_extension('fzf')
13
- extensions.fzf = {
14
- fuzzy = true, -- false will only do exact matching
15
- override_generic_sorter = true, -- override the generic sorter
16
- override_file_sorter = true, -- override the file sorter
17
- case_mode = "smart_case", -- or "ignore_case" or "respect_case"
18
- }
19
-end
20
-
21
-if loaded('telescope-fzy-native.nvim') then
22
- require('telescope').load_extension('fzy_native')
23
24
25
-require'telescope'.load_extension('goimpl')
26
-vim.api.nvim_create_user_command('Goimpl','Telescope goimpl',{})
27
28
require('telescope').setup{
29
defaults = {
vim/my.nvim/lua/telescope/_extensions/goimpl.lua
0 commit comments