____ _ _ __ _ _
/ ___| __ _ _ _(_) __| | __ _ ___ / _(_) | ___ ___
\___ \ / _` | | | | |/ _` |/ _` |/ _ \ |_| | |/ _ \/ __|
___) | (_| | |_| | | (_| | (_| | __/ _| | | __/\__ \
|____/ \__, |\__,_|_|\__,_|\__, |\___|_| |_|_|\___||___/
|_| |___/
Opinionated dotfiles for Zsh, Vim, and Tmux
This is a macOS requirement for Homebrew. The tools may already be installed.
xcode-select --install
Download latest version from here: https://www.iterm2.com/downloads.html
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"
Vim 8+ ships natively on newer versions of macOS now, but unfortunately it causes some major performance issues on certain buffers (e.g. TypeScript files are slow to open and almost always freeze when they finally do open). I stick with Homebrew's Vim instead.
brew install vim
brew install node
Tmux is a terminal multiplexer, which is a fancy way of saying you can run multiple shell instances on different "panes" within the same terminal window, as well as create tabs. Some users prefer this over their terminal's window and tab features because it provides more granular control. However, most modern terminals (as well as Vim buffers) can perform window and pane splitting without Tmux.
I install this now because some of my Vim plugins rely on its existance.
brew install tmux
git config --global core.editor vim
git config --global core.excludesfile ~/.gitignore
I hide my email address on GitHub. I work with different email addresses for different repositories, generally to separate work and personal projects.
As of Git 2.8, I can tell Git not to guess, but rather to insist that I set
user.name
and user.email
explicitly before it will let me commit to a new
repository. To ensure this happens, I set the following global config flag.
git config --global user.useconfigonly true
Follow these articles to be learn how to authenticate with GitHub from Git. This will grant you the action to clone using SSH (more secure), and also make it so that you don't have to enter in your GitHub username and password every time you e.g. push to a remote branch.
If I want to write commits with a new email (e.g. new job), I should add the email to my GitHub account and generate a new set of SSH keys for that new email.
I keep my private SSH keys on a separate flash drive.
Git allows you to sign your commits. To get started, follow the related articles.
Install GnuPG to manage keyring
brew install gpg
If you have existing keys, follow this page to import and validate your keys.
Note to self: I keep my private GPG key on a separate drive.
Then you can set your git config to require a signature using GPG
git config --global commit.gpgsign true
git config --global gpg.program /usr/local/bin/gpg
git config --global user.signingkey YOUR_GPG_KEY_ID
See this page to find your key ID.
You will want to trust your signing key so that it shows up as a valid signature in git-log.
Now when you make some changes in a git directory, committing those changes will open an in-terminal dialog for you to enter your GPG key password that you set up when following the GitHub tutorials linked to above.
NOTE: if you plan on using different GPG keys associated with work and personal emails, but have instantiated the keys on different computers, you can follow these steps to get external keys onto another machine.
You can use this command to see which keys you currently have on your machine
gpg --list-secret-keys --keyid-format LONG
Export your personal secret key to a file called personal.asc
. Then send this file
to your other computer.
gpg --export-secret-keys --armor --output "personal.asc"
Import the personal key onto your work computer.
gpg --import "personal.asc"
Sign the new key to validate it.
gpg --sign-key <keyid>
Repeat the above steps to migrate keys between machines at your leisure.
Clone the repo
git clone [email protected]:indiesquidge/squidgefiles.git ~/.dotfiles
Symlinking is handled via Dotbot:
cd ~/.dotfiles
./install
Vim Plugins are handled via Plug, install Plug with this command.
curl -fLo ~/.vim/autoload/plug.vim --create-dirs \
https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
Then install the dotfile plugins.
vim +PlugInstall +qall
Prezto is a configuration framework for zsh. It provides nice aliases, auto-completions, and pretty prompt themes.
Clone the repo into ~/.zprezto
git clone --recursive https://github.com/indiesquidge/prezto.git "${ZDOTDIR:-$HOME}/.zprezto"
Run the following in zsh to have prezto configure its preferences
setopt EXTENDED_GLOB
for rcfile in "${ZDOTDIR:-$HOME}"/.zprezto/runcoms/^README.md(.N); do
ln -s "$rcfile" "${ZDOTDIR:-$HOME}/.${rcfile:t}"
done
It will probably return something like .zshrc: File exists
. This is fine.
We have our own .zshrc
file that we want to use anyway.
Lastly, let's get rid of the login prompt seen when a new terminal tab or window is opened.
touch ~/.hushlogin
Opening a new terminal tab should show just your prompt. Nice and clean ✨
There are reported issues with some system commands (e.g. pbcopy
) when running
a tmux session. We need to also install this wrapper program to allow for tmux and
the OS to play nicely together. Read more here.
brew install reattach-to-user-namespace
If you'd like to use italic fonts in your terminal within tmux, load the "xterm-256color-italic" file for terminal use:
tic ~/.dotfiles/config/iterm2/xterm-256color-italic.terminfo
You should now be able to run tmux
to enter a new session. The Tmux leader is
set to <C-a>
. A few basic commands to make sure it's working could be <C-a> s
for horizontal splits and <C-a> v
for vertical splits. For a full list of Tmux
commands, see this cheat sheet, or check out the tmux config file vim ~/.tmux.conf
.
NOTE: The following Fonts section is based on fonts I have personally.
Main Fonts: DankMono-*.otf
Powerline symbols: PowerlineSymbols-Powerline.otf
Install the fonts:
cp ~/Dropbox/fonts/DankMono/* ~/Library/Fonts
cp ~/Dropbox/fonts/PowerlineSymbols* ~/Library/Fonts
To use the Dank Mono font, go to iTerm > Preferences > Profiles > Text and choose 14pt Dank Mono Regular. Check use ligatures, anti-aliased, and use a different font for non-ASCII text. Choose PowerlineSymbols 14pt for non-ASCII font.
Vim ships from this repo already using seoul256. To use the same font within the
iTerm2 app, do the following: * Under iTerm > Preferences > Profiles > Colors,
choose "Color Presets... > Import", press ⇧⌘g (shift-cmd-g), type in the file path
~/.dotfiles/config/iterm2/
and select seoul256.itermcolors
.
Now the color scheme should be coherent and seamless across both the editor and the terminal.
Open up preferences (iTerm > Preferences -or- ⌘,)
- Under General,
- Under Window, uncheck "Native full screen windows" to allow full screen without window switching
- Under Profiles,
- Under General, fill in "tmux" for "Send text at start" to start tmux for new windows automatically
- Under Colors, check "Smart box cursor color"
- Under Text
- check "Italic text" and "Draw bold text in bold font"
- check "Anti-aliased" and "Use ligatures" under Font
- Under Window
- Set the settings for "Style" to Fullscreen
- Under Terminal
- Under Terminal Emulation, choose "xterm-256color-italic" for "Report Terminal Type" (manually type in if needed)
- Under the Notifications heading, check "Silence bell", uncheck everything else
- Under Keys
- Under Hotkey, enable system-wide hotkey to whatever you like. Right now I'm digging
^e
since it's on home row (caps lock
mapped tocontrol
) - Under Key Bindings, add the following, all of which should have an action of ignore: ⌘n, ⌘t, ⌘r, ⌘w, ⌘k
- Under Hotkey, enable system-wide hotkey to whatever you like. Right now I'm digging
brew install rg
- better faster strongergrep
(e.g.rg "daft punk" some/file/path
)brew install hub
- GitHub CLI commands (e.g.hub create
,hub pull-request
)brew install tree
- CLI directory structure (e.g.tree ~/Downloads
)brew install httpie
- CLI HTTP client (e.g.http swapi.co/api/planets/1/
)brew install jq
-sed
for JSON data (e.g.http swapi.co/api/planets/1/ | jq '.'
)brew install youtube-dl
- download YouTube videos from the CLI (e.g.youtube-dl https://youtu.be/dQw4w9WgXcQ
)- NOTE:
ffmpeg
oravconv
needed to merge audio and video for downloaded content
- NOTE:
brew install homebrew/dupes/less
- upgraded version ofless
in order to display emoji in git logs!