LazyVim based config
Signed-off-by: Vasileios Manikas <manikasv97@gmail.com>
This commit is contained in:
commit
1a5d8222a8
15 changed files with 646 additions and 0 deletions
10
lua/config/keymaps.lua
Normal file
10
lua/config/keymaps.lua
Normal 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"')
|
||||
Loading…
Add table
Add a link
Reference in a new issue