These are my dotfiles. I use them with zsh and warp is my terminal of choice. I've pulled in what I needed from various amazing Github contributors like @paulirish, @mathiasbynens or @holman and @chantastic. So 1 billion thanks to them. My own additions are minor. The basically come from various online resources and videos. Feel free to fork and contribute.
Just run this
git clone [email protected]:tricinel/dotfiles.git ~/.dotfiles
cd ~/.dotfiles
./setup.sh
This will do a couple of things:
- Install
zsh
, thestarship prompt
and a couple of otherbrew
goodies. See thesetup.sh
file for all the packages that will be installed. - Symlink the appropriate files in
.dotfiles
to your home directory. Everything is configured and tweaked within~/.dotfiles
. We do this using stow.
If you have sensible private information particular to your system (DON'T commit your ssh keys and passwords dude), put them into a .localrc
file in your $HOME
folder and .zshrc
will pick it up automatically.
Git config
.gitconfig
will have some good defaults and a bunch of aliases already set up. You will need to create a file called .gitconfig.local
in your home directory and put your git user in there. It should look like this:
[user]
name = John Doe
email = [email protected]
Any other git config you want to keep private, you can put in there.
As always, these are most welcome.