summaryrefslogtreecommitdiff
path: root/lua/core/dashboard.lua
diff options
context:
space:
mode:
authorAhmed Khalf <[email protected]>2021-08-18 09:34:26 +0400
committerGitHub <[email protected]>2021-08-18 01:34:26 -0400
commitb9b9c69615b469146e3cc75adcf9bd61047404eb (patch)
treee6b3ea906e1c1d2c6710deec6e16ae5f01799713 /lua/core/dashboard.lua
parent21b621c95af592d0da46a29fe4dcc02e5d16c6eb (diff)
[Refactor]: Remove vim-rooter and smart-cwd; then use project.nvim (#1315)
* Replace vim-rooter with project.nvim * Implement stylua format * Remove smart_cwd * Implicitly update nvim-tree dir when project active * Link datapath to cache * Fix stylua * Fix lint * Fix telescope bug * Fix telescope dependency * Fix telescope once and for all * Fix telescope once again
Diffstat (limited to 'lua/core/dashboard.lua')
-rw-r--r--lua/core/dashboard.lua11
1 files changed, 4 insertions, 7 deletions
diff --git a/lua/core/dashboard.lua b/lua/core/dashboard.lua
index 649be14c..423cddd8 100644
--- a/lua/core/dashboard.lua
+++ b/lua/core/dashboard.lua
@@ -31,19 +31,16 @@ M.config = function()
description = { " Find File " },
command = "Telescope find_files",
},
- b = {
+ -- b is reserved for the core.project module
+ c = {
description = { " Recently Used Files" },
command = "Telescope oldfiles",
},
- -- c = {
- -- description = { " Load Last Session " },
- -- command = "SessionLoad",
- -- },
- c = {
+ d = {
description = { " Find Word " },
command = "Telescope live_grep",
},
- d = {
+ e = {
description = { " Settings " },
command = ":e " .. USER_CONFIG_PATH,
},