Dotfiles for my Macbook Pro 15,1 running macOS Catalina 10.15.
- Terminal: Alacritty using zsh w/ starship prompt and color-ls
- Window management: yabai
- Hotkeys: skhd
- Vim: neovim with Vundle to manage plugins
- Tools: tmux, z, fzf
Before you get started make sure you give full disk access permission to your terminal (for writing macos defaults). System Preferences -> Privacy -> Full Disk Access
.
To install:
curl -L https://git.io/JeA7g | sh
This expands to run.sh which will fetch this repo and run the install script.
- Configs for the following tools:
- Alacritty
- fzf
- z
- git
- colorls
- skhd
- yabai
- starship
- Shell environment configs:
.zshrc
.zlogin.sh
.zshenv.sh
- [Antigen]https://github.com/zsh-users/antigen) for zsh plugin management
.aliases
.exports
Brewfile
(contains all homebrew packages, casks, and mac appstore apps)- VSCode settings
The install script will also setup a better Python environment with pyenv and set the global Python version to 3.7 instead of 2 (macOS default).
- The 'highlight color' (accent color for mac, typically blue) is set to pink. To set it to a different color:
- Pick your desired color and get its RGB value (ex. pink is
255,105,180
) - Take each value and divide it by 255 (ex. pink is now
1, 0.41176470588, 0.70588235294
) - Put them into RGB order (ex. pink is
"1 0.41176470588 0.70588235294"
)
- Pick your desired color and get its RGB value (ex. pink is