chore: Update keymaps

This commit is contained in:
Fabio Lenherr / DashieTM 2023-11-18 14:19:36 +01:00
parent 6f617bce52
commit 1e6f107d00
4 changed files with 78 additions and 54 deletions

View file

@ -67,7 +67,7 @@ end, { desc = "Commits" })
map("n", "<leader>gw", function()
require("telescope.builtin").git_bcommits()
end, { desc = "Commits in branch" })
map("n", "<leader>ge", function()
map("n", "<leader>gb", function()
require("telescope.builtin").git_branches()
end, { desc = "Branches" })
map("n", "<leader>gr", function()

View file

@ -52,9 +52,6 @@ return {
"typ",
},
},
gopls = {
staticcheck = true,
},
sqlls = {},
taplo = {},
lemminx = {},

View file

@ -262,4 +262,30 @@ return {
},
},
},
{
"rcarriga/nvim-dap-ui",
keys = {
{
"<leader>dk",
function()
require("dap").down()
end,
desc = "Down",
},
{
"<leader>dl",
function()
require("dap").up()
end,
desc = "Up",
},
{
"<leader>d;",
function()
require("dap").run_last()
end,
desc = "Run Last",
},
},
},
}