Skip to content

Instantly share code, notes, and snippets.

@Conaws
Last active May 15, 2022 09:38
Show Gist options
  • Save Conaws/405e17da845f04eea73ffc0002deb24c to your computer and use it in GitHub Desktop.
Save Conaws/405e17da845f04eea73ffc0002deb24c to your computer and use it in GitHub Desktop.
42 fish helpers
# 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=/nfs/2017/c/cwhite-s/.oh-my-zsh
# Set name of the theme to load. Optionally, if you set this to "random"
# it'll load a random theme each time that oh-my-zsh is loaded.
# See https://github.com/robbyrussell/oh-my-zsh/wiki/Themes
ZSH_THEME="robbyrussell"
# Uncomment the following line to use case-sensitive completion.
# CASE_SENSITIVE="true"
# Uncomment the following line to use hyphen-insensitive completion. Case
# sensitive completion must be off. _ and - will be interchangeable.
# HYPHEN_INSENSITIVE="true"
# Uncomment the following line to disable bi-weekly auto-update checks.
# DISABLE_AUTO_UPDATE="true"
# Uncomment the following line to change how often to auto-update (in days).
# export UPDATE_ZSH_DAYS=13
.zshrc
"~/.zshrc" [noeol] 153L, 4183C
function day(){
cd ~/src/42/piscine/day$1;
}
alias sub="open -a Sublime\ Text"
alias 00="*00"
alias 01="*01"
alias 02="*02"
alias 03="*03"
alias 04="*04"
alias 05="*05"
alias 06="*06"
alias 07="*07"
alias 08="*08"
alias 09="*09"
alias 10="*10"
alias 11="*11"
alias 12="*12"
alias 13="*13"
alias 14="*14"
alias 15="*15"
alias 16="*16"
alias 17="*17"
alias 18="*18"
alias 19="*19"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment