#howtos
Read more stories on Hashnode
Articles with this tag
What if you want to install multiple Neovim distributions like NvChad, LunarVim, AstroNvim, LazyVim, etc. while also keeping your custom Neovim config...
const fruits = [ { name: 'Apple', quantity: 20 }, { name: 'Banana', quantity: 35 }, { name: 'Orange', quantity: 50 }, { name: 'Grapes',...
Intro If you are using either npm or yarn to install packages, ditch it and start using pnpm. pnpm will save you disk space as well as installation...
To search for the word 'expense' /\<expense\> / - search \< - word begins \> - word ends \ is acting as the escape character.
The default prefix in tmux is ctrl+b . Let’s accept it. Using ctrl+b time and again is a pain in your wrist. It’s time to solve this issue. Make...
In insert mode, use ctrl+o to go to normal mode for just one command: ctrl+o h - move cursor left ctrl+o l - move cursor right ctrl+o j - move cursor...