diff options
| author | Philipp Bokatius <[email protected]> | 2022-09-22 19:16:05 +0200 | 
|---|---|---|
| committer | GitHub <[email protected]> | 2022-09-22 13:16:05 -0400 | 
| commit | d06030105064ae630687728c1f112fe447b81afd (patch) | |
| tree | 8dbc8b9037f8f099865712a048cd8da83112ec28 /lua/lvim/core/alpha/dashboard.lua | |
| parent | 223ab2a679e086f1690744edf9f6a2b851c37593 (diff) | |
fix(dashboard): add missing space (#3063)
Diffstat (limited to 'lua/lvim/core/alpha/dashboard.lua')
| -rw-r--r-- | lua/lvim/core/alpha/dashboard.lua | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/lua/lvim/core/alpha/dashboard.lua b/lua/lvim/core/alpha/dashboard.lua index ac80c03a..debf88a7 100644 --- a/lua/lvim/core/alpha/dashboard.lua +++ b/lua/lvim/core/alpha/dashboard.lua @@ -116,7 +116,7 @@ function M.get_sections()          button("f", "  Find File", "<CMD>Telescope find_files<CR>"),          button("n", "  New File", "<CMD>ene!<CR>"),          button("p", "  Projects ", "<CMD>Telescope projects<CR>"), -        button("r", " Recent files", ":Telescope oldfiles <CR>"), +        button("r", "  Recent files", ":Telescope oldfiles <CR>"),          button("t", "  Find Text", "<CMD>Telescope live_grep<CR>"),          button("c", "  Configuration", "<CMD>edit " .. require("lvim.config"):get_user_config_path() .. " <CR>"),        }, | 
