Skip to content

Instantly share code, notes, and snippets.

@ImSuperlative
ImSuperlative / .zshrc
Last active January 11, 2019 09:03
zsh
# If you come from bash you might have to change your $PATH.
# export PATH=$HOME/bin:/usr/local/bin:$PATH
# Path to your oh-my-zsh installation.
export ZSH="/Users/super/.oh-my-zsh"
# Set name of the theme to load --- if set to "random", it will
# load a random theme each time oh-my-zsh is loaded, in which case,
# to know which specific one was loaded, run: echo $RANDOM_THEME
# See https://github.com/robbyrussell/oh-my-zsh/wiki/Themes
body { background: #222; color: #e6e6e6; }
a { color: #949494; }
a:link, a:visited { color: #949494; }
a:hover, a:active, a:focus { color: #c7c7c7; }
hr { border-bottom: 1px solid #424242; border-top: 1px solid #222; }
@ImSuperlative
ImSuperlative / tree-ignore.sh
Last active October 3, 2025 09:16
Tree view - showing ignored files and folders. ex: `./tree-ignore.sh .ebignore -c`
#!/bin/bash
IGNORED='\033[38;2;214;154;107m'
GRAY='\033[90m'
RESET='\033[0m'
IGNORE_FILE=".ebignore"
DEPTH=3
COMPACT=false
SHOW_EXCL_SUFFIX=false