fix conflicting mappings
This commit is contained in:
parent
7611d1390b
commit
3552dcffb9
|
@ -23,6 +23,6 @@ g.dashboard_custom_section = {
|
||||||
b = {description = {" Recents SPC f o"}, command = "Telescope oldfiles"},
|
b = {description = {" Recents SPC f o"}, command = "Telescope oldfiles"},
|
||||||
c = {description = {" Find Word SPC f w"}, command = "Telescope live_grep"},
|
c = {description = {" Find Word SPC f w"}, command = "Telescope live_grep"},
|
||||||
d = {description = {"洛 New File SPC f n"}, command = "DashboardNewFile"},
|
d = {description = {"洛 New File SPC f n"}, command = "DashboardNewFile"},
|
||||||
e = {description = {" Bookmarks SPC f b"}, command = "Telescope marks"},
|
e = {description = {" Bookmarks SPC b m"}, command = "Telescope marks"},
|
||||||
f = {description = {" Load Last Session SPC f s"}, command = "SessionLoad"}
|
f = {description = {" Load Last Session SPC s l"}, command = "SessionLoad"}
|
||||||
}
|
}
|
||||||
|
|
|
@ -77,6 +77,6 @@ vim.api.nvim_set_keymap("n", "<Leader>fm", [[<Cmd> Neoformat<CR>]], opt)
|
||||||
-- dashboard stuff
|
-- dashboard stuff
|
||||||
vim.api.nvim_set_keymap("n", "<Leader>fw", [[<Cmd> Telescope live_grep<CR>]], opt)
|
vim.api.nvim_set_keymap("n", "<Leader>fw", [[<Cmd> Telescope live_grep<CR>]], opt)
|
||||||
vim.api.nvim_set_keymap("n", "<Leader>fn", [[<Cmd> DashboardNewFile<CR>]], opt)
|
vim.api.nvim_set_keymap("n", "<Leader>fn", [[<Cmd> DashboardNewFile<CR>]], opt)
|
||||||
vim.api.nvim_set_keymap("n", "<Leader>fb", [[<Cmd> DashboardJumpMarks<CR>]], opt)
|
vim.api.nvim_set_keymap("n", "<Leader>bm", [[<Cmd> DashboardJumpMarks<CR>]], opt)
|
||||||
vim.api.nvim_set_keymap("n", "<Leader>fl", [[<Cmd> SessionLoad<CR>]], opt)
|
vim.api.nvim_set_keymap("n", "<Leader>sl", [[<Cmd> SessionLoad<CR>]], opt)
|
||||||
vim.api.nvim_set_keymap("n", "<Leader>fs", [[<Cmd> SessionSave<CR>]], opt)
|
vim.api.nvim_set_keymap("n", "<Leader>ss", [[<Cmd> SessionSave<CR>]], opt)
|
||||||
|
|
Loading…
Reference in New Issue