Git in 5 minutes
· ☕ 2 min read · ✍️ Syed Dawood
Yes, you read it correctly. 5 minutes

Language of VIM/NEOVIM
· ☕ 3 min read · ✍️ Syed Dawood
The first thing that may come to your mind when I say language of vim is Vim Script.No that's not what I am talking about.I am talking about the patterns of keystrokes that recur over and over through your use of vim. Construct A, Single alphabets These are most common and most basic of all constructs ,It serves as main building block in vocabulary of language you are about to learn.

7 most useful vim mappings
· ☕ 3 min read · ✍️ Syed Dawood
01 Leader Vim's default mapping for leader is /. Most peoples remap it to , ,which I personally think is not a good choice. Remap it to either CAPSLOCK or <SPACE> key, and find out which works better for you.For me CAPSLOCK didn't workout well. let mapleader=" " # or noremap <Space> <Leader> 02 ESCAPE In modal editor like VIM, we constantly need to switch modes.