Learning to use Vim! I've tried three times before in the past 10 years. This is the first time it actually clicked. It's the first time I've tried Neovim. It's awesome and I feel like I'm playing a game with myself while working. I thought it would take much longer to get to the speed I'm at now. I've been using Vim exclusively for a month.
Same here! What keys/combinations are you usually using right now?
In visual mode, move a line up or down: vim.keymap.set("v", "J", ":m '>+1gv=gv") vim.keymap.set("v", "K", ":m 'gv=gv")
In normal mode, replace all occurences of the word under the cursor: vim.keymap.set("n", "s", [[:%s/\\>//gI]])
In normal or visual mode, Yank to the OS's pasteboard: vim.keymap.set({"n", "v"}, "y", [["+y]])
And there are plenty more that are related to specific plugins.
Also, I've remapped caps lock to esc in the OS. This makes it way easier to leave insert mode without leaving the home row.