From b3078d32b202c7a9a6b74683b2ac3bdb04052bae Mon Sep 17 00:00:00 2001 From: Stefan Imhoff Date: Sun, 25 Dec 2022 10:21:54 +0100 Subject: [PATCH] chore(nvim): reduce items on Alpha dashboard --- nvim/after/plugin/alpha.lua | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/nvim/after/plugin/alpha.lua b/nvim/after/plugin/alpha.lua index 4ce92d0..6fa7b38 100644 --- a/nvim/after/plugin/alpha.lua +++ b/nvim/after/plugin/alpha.lua @@ -5,13 +5,11 @@ local dashboard = require("alpha.themes.dashboard") dashboard.section.header.val = {} dashboard.section.buttons.val = { - dashboard.button("f", " Find Files", ":Telescope find_files"), dashboard.button("e", " New File", ":ene startinsert"), + dashboard.button("f", " Find Files", ":Telescope find_files"), dashboard.button("p", " Find Project", ":Telescope projects"), dashboard.button("r", " Recently Used Files", ":Telescope oldfiles"), dashboard.button("t", " Find Text", ":Telescope grep_string"), - dashboard.button("b", " Browser Bookmarks", ":Telescope bookmarks"), - dashboard.button("c", " Configuration", ":e ~/.config/nvim/init.lua"), dashboard.button("u", " Update Plugins", ":Lazy sync"), dashboard.button("m", " Mason (LSP, DAP, Linter, Formatter)", ":Mason"), dashboard.button("q", " Quit Neovim", ":qa"),