From 2d75551f3fd4f54dd4c9cbb88cfedce709474d29 Mon Sep 17 00:00:00 2001 From: Kristofers Solo Date: Tue, 2 Aug 2022 23:17:32 +0300 Subject: [PATCH] Remove hidden files from telescope search --- .config/nvim/lua/user/alpha.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.config/nvim/lua/user/alpha.lua b/.config/nvim/lua/user/alpha.lua index 39197b01..d72e74df 100644 --- a/.config/nvim/lua/user/alpha.lua +++ b/.config/nvim/lua/user/alpha.lua @@ -13,11 +13,11 @@ dashboard.section.header.val = { [[ \/_/\/_/\/____/\/___/ \/__/ \/_/\/_/\/_/\/_/]], } dashboard.section.buttons.val = { - dashboard.button("f", " Find file", "Telescope find_files hidden=true"), - dashboard.button("e", " New file", "ene startinsert hidden=true"), + dashboard.button("f", " Find file", "Telescope find_files"), + dashboard.button("e", " New file", "ene startinsert"), dashboard.button("p", " Find project", "Telescope projects"), dashboard.button("r", " Recently used files", "Telescope oldfiles"), - dashboard.button("t", " Find text", "Telescope live_grep hidden=true"), + dashboard.button("t", " Find text", "Telescope live_grep"), dashboard.button("c", " Configuration", "e ~/.config/nvim/init.lua"), dashboard.button("q", " Quit Neovim", "qa"), }