======= OS X ======
===== vim colouring =====
''.vimrc''
syntax on
===== Prompt =====
''.zshrc''
# Colored terminal (folders, etc)
export CLICOLOR=1
export LSCOLORS=ExFxCxDxBxegedabagacad
//Coloured, with user@host:full_path//
# Bash prompt
PS1='\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ '
# zsh prompt (OSX)
PROMPT='%B%F{green}%n@%m%f%b:%B%F{blue}%~%f%b$ '
===== Remove Finder from ALT+TAB =====
# Open file
sudo vi /System/Library/CoreServices/Finder.app/Contents/Info.plist
# Add these lines in the node
NSUIElement
1
===== Disable key accent menu on hold push, allow repeating ======
# Enable repeating
defaults write -g ApplePressAndHoldEnabled -bool false
# Revert to default
defaults write -g ApplePressAndHoldEnabled -bool true
===== M1 bullshit =====
* [[https://github.com/Homebrew/brew/issues/7857 | macOS 11 Big Sur compatibility on Apple Silicon]]