This is where I keep all of my dotfiles
- Operating System: MacOs
- Terminal: iTerm2
- Shell: zsh
- Browser: Firefox
This arrangement helps me manage my dotfiles without linking. Came across this method in this video
Clone dotfiles
git clone --bare git@github.com:revanth94/dotfiles.git $HOME/.dotfiles
Set Up alias
alias df2="/usr/bin/git --git-dir="$HOME"/.dotfiles/ --work-tree="$HOME
df2 config --local status.showUntrackedFiles no
Oh my ZSH is a great place to start customising zsh. (Github Link)
Add the following into .zshrc to load custom scripts.
ZSH_CUSTOM=~/.config/zsh
source $ZSH_CUSTOM/aliases.zsh
source $ZSH_CUSTOM/scripting.zsh
Install vim
brew install vim
.vimrc inspired from this article