diff --git a/lua/custom/plugins/init.lua b/lua/custom/plugins/init.lua index c05db465..afc88495 100644 --- a/lua/custom/plugins/init.lua +++ b/lua/custom/plugins/init.lua @@ -11,3 +11,8 @@ for file_name, type in vim.fs.dir(plugins_dir) do require('custom.plugins.' .. module) end end +--custom keymaps i will set here +-- +--1) this one is for moving lines like in vscode, up and down with alt j or down with alt-k +vim.keymap.set("n", "", ":m .+1==") +vim.keymap.set("n", "", ":m .-2==")