This repo contains the macOS setup that I like to make my machine feel cozy.
Note: May you, the curious programmer that ended up here, use it for inspiration but be warned that I don't guarantee a bug-free experience.
- In a new machine, clone this repo in
~/
and rename to.dotfiles_personal
- In
~/
add a.bashrc
with the command[ -n "$PS1" ] && source ~/.dotfiles_personal/.bash_profile;
- In
~/
add a.bash_profile
with the commandsource ~/.dotfiles_personal/.bash_profile;
- In Terminal > Settings adjust the background color to black, font color to white and any other config you may like.
iTerm2 is stylized using Fish. To configure it:
- Install iTerm2, Fish and OhMyFish! and load the theme neolambda.
- Fild the file
~/.config/fish/config.fish
and write the contents:
source ~/.dotfiles_personal/fish/config.fish
- Find the omf (OhMyFish!) themes folder and copy
fish_prompt.fish
andfish_righ_prompt.fish
.
- Install theme
Railgun
and file icon themeChalice
. - In VSCode, launch the command
>Open User Settings (JSON)
and copy the contents ofvscode/settings.json
.
- In
~/
add a.gitconfig
with the content:
[include]
path = ~/.dotfiles_personal/.my_gitconfig
- Install the Git Autocompletion executable with:
curl https://raw.githubusercontent.com/git/git/master/contrib/completion/git-completion.bash -o ~/.git-completion.bash
- Run
./.config_macos.sh
to config macOS settings.
IMP: Always push changes made locally to keep them in sync here!