This repo must be cloned in ~/ directory
Run stow to symlink everything or select what you want
stow */ # Everything (the '/' ignores the README)stow zsh # My zsh configMake fish the default terminal
chsh -s $(which fish)Assign options+space to leaderkey
After installing leader-key using brew need to configure it from the GUI
to look for the config in ~/.config/leaderkey
I am using different scripts to use with different apps
need to soft link the scripts to be used globally.
These scripts are mainly used with leaderkey and kando
sudo ln -s ~/scripts/music-player.sh /usr/local/bin/music-player
sudo ln -s ~/scripts/open-browser.sh /usr/local/bin/open-browser
sudo ln -s ~/scripts/send-keys.sh /usr/local/bin/send-keys
sudo ln -s ~/scripts/toggle-desk.sh /usr/local/bin/toggle-desk
sudo ln -s ~/scripts/open-new-osa.sh /usr/local/bin/open-new-osaIn order for bat to use the new theme you need to run this command:
bat cache --buildCheck this issue here, solution is to run this command:
sudo launchctl config user path "/usr/local/bin:$PATH"
# Updated brew location do this instead
sudo launchctl config user path "/opt/homebrew/bin:$PATH"
cd ./brew
brew bundlebrew bundle dump
brew leaves --installed-on-request | xargs -n1 brew desc > ./brew/brew-description
# Disable animations
defaults write -g NSAutomaticWindowAnimationsEnabled -bool false
# Ctrl + CMD and drag any part of the window
defaults write -g NSWindowShouldDragOnGesture -bool true
# Fast key repeat
defaults write -g InitialKeyRepeat -int 10 # normal minimum is 15 (225 ms)
defaults write -g KeyRepeat -int 1 # normal minimum is 2 (30 ms)For cargo to run install rust here