From 345b55aebb477fdf50a0de36c60f4b6ec1fc3c9f Mon Sep 17 00:00:00 2001 From: TheK4n Date: Mon, 23 Oct 2023 10:10:38 +0300 Subject: [PATCH] feat(nvim): telescope git --- home/user/.config/nvim/lua/base/plugins/telescope.lua | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/home/user/.config/nvim/lua/base/plugins/telescope.lua b/home/user/.config/nvim/lua/base/plugins/telescope.lua index 997ec98..5c418b7 100644 --- a/home/user/.config/nvim/lua/base/plugins/telescope.lua +++ b/home/user/.config/nvim/lua/base/plugins/telescope.lua @@ -12,6 +12,8 @@ return { keys = { { 'ff', 'Telescope find_files' }, { 'fg', 'Telescope live_grep' }, + { 'fc', 'Telescope git_commits' }, + { 'fd', 'Telescope diagnostics' }, }, config = function() local telescope = require("telescope") @@ -19,6 +21,11 @@ return { telescope.load_extension("fzf") telescope.setup({ + pickers = { + find_files = { + hidden = true + }, + }, defaults = { selection_caret = " ", path_display = { "smart" },