Skip to content

Instantly share code, notes, and snippets.

@duboiss
Last active February 16, 2022 13:59
Show Gist options
  • Save duboiss/738f2d3b5b5e9aae5ebf65d799c2a611 to your computer and use it in GitHub Desktop.
Save duboiss/738f2d3b5b5e9aae5ebf65d799c2a611 to your computer and use it in GitHub Desktop.

.zshrc

cd $ZSH_CUSTOM/plugins &&
git clone https://github.com/djui/alias-tips.git &&
git clone https://github.com/zsh-users/zsh-autosuggestions &&
git clone https://github.com/zsh-users/zsh-syntax-highlighting &&
cd -
ZSH_THEME="nord"

plugins=(
    alias-tips
    colored-man-pages
    docker
    sudo
    web-search
    yarn
	zsh-autosuggestions
	zsh-interactive-cd
	zsh-syntax-highlighting
)

source ~/env.sh

Some themes

Terminal settings

iTerm 2 (MacOS): https://github.com/arcticicestudio/nord-iterm2

Windows Terminal (Windows 10):

    "schemes": [
                // ...
                { 
            "name" : "Nord", 
         
            "cursorColor": "#FFFFFF", 
            "selectionBackground": "#FFFFFF", 
         
            "foreground": "#D8DEE9", 
            "background": "#2E3440", 
            "black": "#3B4252", 
            "red": "#BF616A", 
            "green": "#A3BE8C", 
            "yellow": "#EBCB8B", 
            "blue": "#81A1C1", 
            "purple": "#B48EAD", 
            "cyan": "#88C0D0", 
            "white": "#E5E9F0", 
            "brightBlack": "#4C566A", 
            "brightRed": "#BF616A", 
            "brightGreen": "#A3BE8C", 
            "brightYellow": "#EBCB8B", 
            "brightBlue": "#81A1C1", 
            "brightPurple": "#B48EAD", 
            "brightCyan": "#88C0D0", 
            "brightWhite": "#E5E9F0" 
          }
    ],

Credits: nordtheme/nord#123

af-magic custom

https://gist.github.com/weaverryan/986350a5ba6d1adca3dfcabf10231023

Spaceship

https://github.com/denysdovhan/spaceship-prompt

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment