refactor: move .config and start.sh outside home/ folder

This commit is contained in:
yeti
2025-05-16 09:08:57 +01:00
parent fcda25b36b
commit 397467d8a4
17 changed files with 64 additions and 0 deletions

View File

@ -0,0 +1,15 @@
-- 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
vim.keymap.set(
"n",
"]<space>",
':<C-u>call append(line("."), repeat([""], v:count1))<CR>',
{ silent = true, desc = "Add line below" }
)
vim.keymap.set(
"n",
"[<space>",
':<C-u>call append(line(".")-1, repeat([""], v:count1))<CR>',
{ silent = true, desc = "Add line above" }
)