diff options
| author | Christian Chiarulli <[email protected]> | 2022-09-15 23:33:08 -0400 | 
|---|---|---|
| committer | GitHub <[email protected]> | 2022-09-15 23:33:08 -0400 | 
| commit | a4c2dc4d0b638a50c3219f247b09e6238a44ec50 (patch) | |
| tree | 250527d4ca3a5644d6d6fbae80d9d5a2abee5b0d /lua/lvim/core/alpha | |
| parent | 464ad8b0035cbcaf4864d14da598b77a939026d8 (diff) | |
refactor: small improvements (#3021)
Diffstat (limited to 'lua/lvim/core/alpha')
| -rw-r--r-- | lua/lvim/core/alpha/dashboard.lua | 12 | 
1 files changed, 6 insertions, 6 deletions
| diff --git a/lua/lvim/core/alpha/dashboard.lua b/lua/lvim/core/alpha/dashboard.lua index d65980fb..9f235ce0 100644 --- a/lua/lvim/core/alpha/dashboard.lua +++ b/lua/lvim/core/alpha/dashboard.lua @@ -51,13 +51,13 @@ function M.get_sections()    local buttons = {      entries = { -      { "SPC f", "  Find File", "<CMD>Telescope find_files<CR>" }, -      { "SPC n", "  New File", "<CMD>ene!<CR>" }, -      { "SPC P", "  Recent Projects ", "<CMD>Telescope projects<CR>" }, -      { "SPC s r", "  Recently Used Files", "<CMD>Telescope oldfiles<CR>" }, -      { "SPC s t", "  Find Word", "<CMD>Telescope live_grep<CR>" }, +      { "f", "  Find File", "<CMD>Telescope find_files<CR>" }, +      { "n", "  New File", "<CMD>ene!<CR>" }, +      { "p", "  Recent Projects ", "<CMD>Telescope projects<CR>" }, +      { "r", "  Recently Used Files", "<CMD>Telescope oldfiles<CR>" }, +      { "t", "  Find Word", "<CMD>Telescope live_grep<CR>" },        { -        "SPC L c", +        "c",          "  Configuration",          "<CMD>edit " .. require("lvim.config"):get_user_config_path() .. " <CR>",        }, | 
