GitHub Visual Studio Code Theme for iTerm (Dark, Dimmed, Light and High Contrast)
ll
is an alias1 for ogham/exa
cli tool.
Download iTerm profiles and open them.
- GitHub Dark Default.itermcolors
- GitHub Dark Dimmed.itermcolors
- GitHub Dark High Contrast.itermcolors
- GitHub Light Default.itermcolors
- GitHub Light High Contrast.itermcolors
GitHub Dark Default | GitHub Dark Dimmed | GitHub Dark High Contrast |
---|---|---|
GitHub Light Default | GitHub Light High Contrast |
---|---|
GitHub Dark | GitHub Light |
---|---|
They will be automatically added to your Color Presets... inside Profiles > Colors in iTerm Preferences pane.
You can also download these profiles for Apple Terminal app:
- GitHub Dark Default.terminal
- GitHub Dark Dimmed.terminal
- GitHub Dark High Contrast.terminal
- GitHub Light Default.terminal
- GitHub Light High Contrast.terminal
If you are interested on these themes for Ghostty Terminal, you can download the iTerm themes and convert them using this gist: cdalvaro/iterm2ghostty.rb
For example:
curl -L -o iterm2ghostty.rb https://gist.github.com/cdalvaro/baaf834c705b5b9e073fc092de1e8520/raw/iterm2ghostty.rb
chmod +x iterm2ghostty.rb
./iterm2ghostty.rb --file github-vscode-theme-iterm-main/GitHub\ Dark\ Dimmed.itermcolors
You can copy the output to you Ghostty config file:
./iterm2ghostty.rb --file github-vscode-theme-iterm-main/GitHub\ Dark\ Dimmed.itermcolors >> ~/.config/ghostty/config
or create a new theme file with the output:
mkdir -p ~/.config/ghostty/themes
./iterm2ghostty.rb --file github-vscode-theme-iterm-main/GitHub\ Dark\ Dimmed.itermcolors > ~/.config/ghostty/themes/github-dark-dimmed
Then, set the new theme in your config file ~/.config/ghostty/config
:
theme = github-dark-dimmed
I use Z shell in combination with ohmyzsh framework.
My prompt theme is starship, which is available for any shell. And the font I'm currently using is MonoLisa.
Some of the ohmyzsh plugins I use are:
Apart of those, I use other plugins such as:
And some interesting utils I use are:
ogham/exa
, which is a modern replacement forls
. In my case forll
1.junegunn/fzf
BurntSushi/ripgrep
neovim/neovim
See cdalvaro/dotfiles for more details.
-
alias ll='exa --long --header --group --git --modified --color-scale'
↩️