mirror of
https://github.com/bgrolleman/dotfiles.git
synced 2025-12-06 05:45:24 +01:00
13 lines
414 B
Lua
13 lines
414 B
Lua
-- 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
|
|
--
|
|
-- vim.api.nvim_set_keymap("i", "jj", "<Esc>", { noremap = false })
|
|
|
|
local wk = require("which-key")
|
|
|
|
wk.add({
|
|
{ "<leader>N", group = "Notes" },
|
|
{ "<leader>Nt", ":Journal<CR>", desc = "Today" },
|
|
})
|