From 7d689c4297b578865dacf056cb73dbd52f086e16 Mon Sep 17 00:00:00 2001 From: abicidieeffegi Date: Tue, 10 Feb 2026 20:18:24 +0100 Subject: [PATCH] Fix command execution for configuration button :cd stdpath("config") gives an error, while :exe "cd" stdpath("config") does not --- lua/alpha/themes/theta.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/alpha/themes/theta.lua b/lua/alpha/themes/theta.lua index 78b643a..de1d00e 100644 --- a/lua/alpha/themes/theta.lua +++ b/lua/alpha/themes/theta.lua @@ -174,7 +174,7 @@ local buttons = { dashboard.button("e", " New file", "ene"), dashboard.button("SPC f f", "󰈞 Find file"), dashboard.button("SPC f g", "󰊄 Live grep"), - dashboard.button("c", " Configuration", "cd stdpath('config')"), + dashboard.button("c", " Configuration", "exe 'cd' stdpath('config')"), dashboard.button("u", " Update plugins", "Lazy sync"), dashboard.button("q", "󰅚 Quit", "qa"), },