first commit

This commit is contained in:
2025-06-14 20:26:14 +02:00
commit 1edfd60dbd
351 changed files with 34592 additions and 0 deletions

16
nvim/lua/config/keymaps.lua Executable file
View File

@@ -0,0 +1,16 @@
-- 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 km = vim.keymap
local map = vim.keymap.set
-- split windows horizontally and vertically
map("n", "<leader>sv", "<C-w>v")
map("n", "<leader>sh", "<C-w>s")
-- no highlight
map("n", "<leader>nh", ":nohl<CR>")
map("i", "jk", "<ESC>")