addet icons to the dashboard
This commit is contained in:
parent
67d22af38e
commit
49cd9c66be
1 changed files with 12 additions and 7 deletions
|
@ -52,16 +52,21 @@ return {
|
|||
require("telescope.builtin").find_files()
|
||||
end,
|
||||
desc = " Find File",
|
||||
icon = " ",
|
||||
icon = " ",
|
||||
key = "f",
|
||||
},
|
||||
{ action = "ene | startinsert", desc = " New File", icon = " ", key = "n" },
|
||||
{
|
||||
action = "ene | startinsert",
|
||||
desc = " New File",
|
||||
icon = " ",
|
||||
key = "n",
|
||||
},
|
||||
{
|
||||
action = function()
|
||||
require("telescope.builtin").oldfiles()
|
||||
end,
|
||||
desc = " Recent Files",
|
||||
icon = " ",
|
||||
icon = " ",
|
||||
key = "r",
|
||||
},
|
||||
{
|
||||
|
@ -69,7 +74,7 @@ return {
|
|||
require("telescope.builtin").live_grep()
|
||||
end,
|
||||
desc = " Find Text",
|
||||
icon = " ",
|
||||
icon = " ",
|
||||
key = "w",
|
||||
},
|
||||
{
|
||||
|
@ -77,13 +82,13 @@ return {
|
|||
require("telescope.builtin").find_files({ cwd = vim.fn.stdpath("config") })
|
||||
end,
|
||||
desc = " Search Neovim files",
|
||||
icon = " ",
|
||||
icon = " ",
|
||||
key = "c",
|
||||
},
|
||||
{
|
||||
action = 'lua require("persistence").load()',
|
||||
desc = " Restore Session",
|
||||
icon = " ",
|
||||
icon = " ",
|
||||
key = "s",
|
||||
},
|
||||
-- { action = "LazyExtras", desc = " Lazy Extras", icon = " ", key = "x" },
|
||||
|
@ -93,7 +98,7 @@ return {
|
|||
vim.api.nvim_input("<cmd>qa<cr>")
|
||||
end,
|
||||
desc = " Quit",
|
||||
icon = " ",
|
||||
icon = " ",
|
||||
key = "q",
|
||||
},
|
||||
},
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue