move to lazyvim
This commit is contained in:
parent
ecb347cc19
commit
9725324dbf
27 changed files with 592 additions and 338 deletions
51
.config/nvim/lua/config/keymaps.lua
Normal file
51
.config/nvim/lua/config/keymaps.lua
Normal file
|
|
@ -0,0 +1,51 @@
|
|||
-- Keymaps are automatically loaded on the VeryLazy event
|
||||
-- Default keymaps that are always set: https://github.com/LazyVim/LazyVim/blob/main/lua/lazyvim/config/keymaps.lua
|
||||
-- Add any additional keymaps here
|
||||
--
|
||||
|
||||
local map = vim.keymap.set
|
||||
|
||||
-- map("n", ";", ":", { desc = "CMD enter command mode" })
|
||||
-- map("i", "jk", "<ESC>")
|
||||
|
||||
-- Tmux
|
||||
map("", "<C-h>", "<cmd> TmuxNavigateLeft<CR>", { desc = "window left" })
|
||||
map("", "<C-l>", "<cmd> TmuxNavigateRight<CR>", { desc = "window right" })
|
||||
map("", "<C-j>", "<cmd> TmuxNavigateDown<CR>", { desc = "window down" })
|
||||
map("", "<C-k>", "<cmd> TmuxNavigateUp<CR>", { desc = "window up" })
|
||||
|
||||
-- Go
|
||||
map("", "<leader>gsj", "<cmd> GoTagAdd json <CR>", { desc = "Add json struct tags" })
|
||||
map("", "<leader>gsy", "<cmd> GoTagAdd yaml <CR>", { desc = "Add yaml struct tags" })
|
||||
map("", "<leader>gse", "<cmd> GoTagAdd env <CR>", { desc = "Add env struct tags" })
|
||||
|
||||
-- Dap
|
||||
map("", "<leader>db", "<cmd> DapToggleBreakpoint <CR>", { desc = "Add breakpoint at line" })
|
||||
map("", "<leader>dc", "<cmd> DapContinue <CR>", { desc = "Start Debugging" })
|
||||
map("", "<leader>dt", "<cmd> DapTerminate <CR>", { desc = "Stop Debugging" })
|
||||
map("", "<leader>dso", "<cmd> DapStepOver <CR>", { desc = "Step Over" })
|
||||
map("", "<leader>dsi", "<cmd> DapStepInto <CR>", { desc = "Step Into" })
|
||||
map("", "<leader>dst", "<cmd> DapStepOut <CR>", { desc = "Step Out" })
|
||||
map("", "<leader>dus", function()
|
||||
local widgets = require("dap.ui.widgets")
|
||||
local sidebar = widgets.sidebar(widgets.scopes)
|
||||
sidebar.open()
|
||||
end, { desc = "Open debugging Window" })
|
||||
|
||||
-- Movement
|
||||
map("n", "<C-d>", "<c-d>zz", { noremap = true })
|
||||
map("n", "<C-u>", "<c-u>zz", { noremap = true })
|
||||
map("n", "n", "nzzzv", { noremap = true })
|
||||
map("n", "N", "Nzzzv", { noremap = true })
|
||||
|
||||
-- Powershell
|
||||
map("n", "<leader>E", function()
|
||||
require("powershell").eval()
|
||||
end, { noremap = true })
|
||||
map("n", "<leader>P", function()
|
||||
require("powershell").toggle_term()
|
||||
end, { noremap = true })
|
||||
|
||||
-- Obsidian
|
||||
map("", "<leader>of", "<cmd> ObsidianFollowLink <CR>", { desc = "Follow Link" })
|
||||
map("", "<leader>ol", "<cmd> ObsidianLinks <CR>", { desc = "Show All Links" })
|
||||
Loading…
Add table
Add a link
Reference in a new issue