LazyVim based config

Signed-off-by: Vasileios Manikas <manikasv97@gmail.com>
This commit is contained in:
Vasileios Manikas 2025-01-17 13:49:57 +01:00
commit 1a5d8222a8
15 changed files with 646 additions and 0 deletions

10
lua/config/keymaps.lua Normal file
View file

@ -0,0 +1,10 @@
-- 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.keymap.set("n", "<left>", '<cmd>echo "Use h to move!!"<CR>')
vim.keymap.set("n", "<right>", '<cmd>echo "Use l to move!!"<CR>')
vim.keymap.set("n", "<up>", '<cmd>echo "Use k to move!!"<CR>')
vim.keymap.set("n", "<down>", '<cmd>echo "Use j to move!!"<CR>')
vim.keymap.set({ "n", "x" }, "<leader>y", '"+y"')
vim.keymap.set({ "n", "x" }, "<leader>p", '"+p"')