fix losing dashboard command add whichkey binding for lunarconfig

This commit is contained in:
christianchiarulli 2021-07-06 23:08:53 -04:00
parent 0c6771a385
commit d6b00cec25
3 changed files with 15 additions and 5 deletions

View file

@ -28,10 +28,10 @@ M.config = function()
description = { " Settings " }, description = { " Settings " },
command = ":e " .. CONFIG_PATH .. "/lv-config.lua", command = ":e " .. CONFIG_PATH .. "/lv-config.lua",
}, },
f = { -- f = {
description = { " Neovim Config Files" }, -- description = { " Neovim Config Files" },
command = "Telescope find_files cwd=" .. CONFIG_PATH, -- command = "Telescope find_files cwd=" .. CONFIG_PATH,
}, -- },
-- e = {description = {' Marks '}, command = 'Telescope marks'} -- e = {description = {' Marks '}, command = 'Telescope marks'}
} }
vim.cmd "let g:dashboard_session_directory = $HOME..'/.config/nvim/.sessions'" vim.cmd "let g:dashboard_session_directory = $HOME..'/.config/nvim/.sessions'"

View file

@ -84,13 +84,23 @@ vim.api.nvim_set_keymap("v", "<leader>/", ":CommentToggle<CR>", { noremap = true
-- close buffer -- close buffer
vim.api.nvim_set_keymap("n", "<leader>c", ":BufferClose<CR>", { noremap = true, silent = true }) vim.api.nvim_set_keymap("n", "<leader>c", ":BufferClose<CR>", { noremap = true, silent = true })
-- open lv-config
vim.api.nvim_set_keymap(
"n",
"<leader>.",
":e " .. CONFIG_PATH .. "/lv-config.lua<CR>",
{ noremap = true, silent = true }
)
local mappings = { local mappings = {
["."] = "LunarConfig",
["/"] = "Comment", ["/"] = "Comment",
["c"] = "Close Buffer", ["c"] = "Close Buffer",
["e"] = "Explorer", ["e"] = "Explorer",
["f"] = "Find File", ["f"] = "Find File",
["h"] = "No Highlight", ["h"] = "No Highlight",
[";"] = "Dashboard",
b = { b = {
name = "Buffers", name = "Buffers",
j = { "<cmd>BufferPick<cr>", "jump to buffer" }, j = { "<cmd>BufferPick<cr>", "jump to buffer" },

View file

@ -127,7 +127,7 @@ return require("packer").startup(function(use)
use { use {
"ChristianChiarulli/dashboard-nvim", "ChristianChiarulli/dashboard-nvim",
event = "BufWinEnter", event = "BufWinEnter",
cmd = { "Dashboard", "DashboardNewFile", "DashboardJumpMarks" }, -- cmd = { "Dashboard", "DashboardNewFile", "DashboardJumpMarks" },
config = function() config = function()
require("lv-dashboard").config() require("lv-dashboard").config()
end, end,