/dotfiles

my terminal configuration

Primary LanguageShell

About

This is a backup of some of my terminal configuration.

I recommend Oh My Zsh with the zsh-autosuggestions and zsh-syntax-highlighting plugins.

Mac recommendations:

Mac maybe recommendations:

Windows recommendations:

npm recommendations:

node recommendations:

  • fnm Fast Node Manager (replaces nvm)

git commands:

  • merge main into all local branches
for BRANCH in `git branch`; do git checkout $BRANCH; git merge main; done
  • push all local branches to origin
for BRANCH in `git branch`; do git push origin $BRANCH; done