From 78bff95587ff3b836ba55465c4d3837f69ca09b1 Mon Sep 17 00:00:00 2001 From: Marko Korhonen Date: Mon, 18 Sep 2023 13:01:41 +0300 Subject: [PATCH] Nvim: disable show line in telescope lsp_references --- home/.config/nvim/lua/plugins/telescope.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/home/.config/nvim/lua/plugins/telescope.lua b/home/.config/nvim/lua/plugins/telescope.lua index 1e806c0e..89309321 100644 --- a/home/.config/nvim/lua/plugins/telescope.lua +++ b/home/.config/nvim/lua/plugins/telescope.lua @@ -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")