Nvim: disable show line in telescope lsp_references

This commit is contained in:
Marko Korhonen 2023-09-18 13:01:41 +03:00
parent c9f95761bb
commit 5d998c8138
Signed by: FunctionalHacker
GPG key ID: A7F78BCB859CD890

View file

@ -4,7 +4,7 @@ return function()
telescope.setup({
defaults = { path_display = { "smart" } },
pickers = { find_files = { find_command = { "fd", "-Ht", "f" } } },
pickers = { find_files = { find_command = { "fd", "-Ht", "f" } }, lsp_references = { show_line = false } },
})
telescope.load_extension("fzf")