mirror of
https://github.com/jessebot/dot_files.git
synced 2025-10-01 01:48:43 +00:00
Got key maps workings for nvim dashboard again
This commit is contained in:
parent
0fefe12c61
commit
7d45b212f7
1 changed files with 14 additions and 16 deletions
|
@ -35,52 +35,50 @@ db.setup({
|
|||
center = {
|
||||
{
|
||||
icon = " ",
|
||||
icon_hl = { link = icon_color },
|
||||
desc = "Find File f",
|
||||
icon_hl = icon_color,
|
||||
desc = "Find File ",
|
||||
key = "f",
|
||||
|
||||
action = "Telescope find_files",
|
||||
},
|
||||
{
|
||||
icon = " ",
|
||||
icon_hl = { link = icon_color },
|
||||
desc = "Recents r",
|
||||
icon_hl = icon_color,
|
||||
desc = "Recents ",
|
||||
key = "r",
|
||||
action = "Telescope oldfiles",
|
||||
},
|
||||
{
|
||||
icon = " ",
|
||||
icon_hl = { link = icon_color },
|
||||
desc = "New File n",
|
||||
icon_hl = icon_color,
|
||||
desc = "New File ",
|
||||
key = "n",
|
||||
action = "DashboardNewFile",
|
||||
},
|
||||
|
||||
-- { key = "<leader>fm", icon = " ", desc = "Bookmark", action = "Telescope marks" },
|
||||
{
|
||||
icon = " ",
|
||||
icon_hl = { link = icon_color },
|
||||
desc = "Load Last Session L",
|
||||
icon_hl = icon_color,
|
||||
desc = "Load Last Session ",
|
||||
key = "L",
|
||||
action = "SessionLoad",
|
||||
},
|
||||
|
||||
{
|
||||
icon = " ",
|
||||
icon_hl = { link = icon_color },
|
||||
desc = "Update Plugins u",
|
||||
icon_hl = icon_color,
|
||||
desc = "Update Plugins ",
|
||||
key = "u",
|
||||
action = "PackerUpdate",
|
||||
},
|
||||
{
|
||||
icon = " ",
|
||||
icon_hl = { link = icon_color },
|
||||
desc = "Exit q",
|
||||
icon_hl = icon_color,
|
||||
desc = "Exit ",
|
||||
key = "q",
|
||||
action = "exit",
|
||||
},
|
||||
},
|
||||
footer = {
|
||||
"type :help<Enter> on-line help"
|
||||
"type :help<Enter> or <F1> for on-line help"
|
||||
}
|
||||
}
|
||||
})
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue