Shortcuts on VIM

Vimrc Generally, as a devOps engineer, I have to edit a lot of config files on remote servers, and these always almost have vim installed. Coincidentally over the years I have taken up vim quite swimmingly, however when I am SSH’d into a server I find it hard to keep turning on a few vim flags that improve the overall QOL. So I have this tiny .vimrc that I use....

March 29, 2021 · 1 min · Yashodhan Ghadge

Tmux

install tmux sudo apt install tmux https://www.hamvocke.com/blog/a-guide-to-customizing-your-tmux-conf/ tmux shortcuts <PREFIX> => Ctrl + a tmux list sessions tmux ls attach session (from the list displayed by the above command) tmux attach-session -t <session-name> detach from current session <PREFIX> d create new window <PREFIX> c rename current window <PREFIX> , goto cmd line <PREFIX> : tmux plugins tmux plugin manager https://github.com/tmux-plugins/tpm to install git clone https://github.com/tmux-plugins/tpm ~/.tmux/plugins/tpm Commands prefix + I => installs the listed plugins in the tmux config...

1 min · Yashodhan Ghadge