This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
activity-action other | |
assume-paste-time 1 | |
base-index 0 | |
bell-action any | |
default-command "" | |
default-shell "/bin/bash" | |
destroy-unattached off | |
detach-on-destroy on | |
display-panes-active-colour red | |
display-panes-colour blue |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
call plug#begin('~/.vim/plugged') | |
"" Dracula | |
Plug 'dracula/vim', {'as': 'dracula'} | |
"" One Half color scheme | |
Plug 'sonph/onehalf', {'as': 'onehalf'} | |
"" Molokai color scheme | |
Plug 'tomasr/molokai' | |
"" Gruvbox color scheme | |
Plug 'morhetz/gruvbox' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Welcome user | |
echo "Welcome, Zoe. Enjoy!" | |
export PATH=~/bin:$PATH | |
[ -f "$HOME/.bashrc" ] && source "$HOME/.bashrc" # Load bashrc when Ubuntu stars | |
# TERMINAL | |
export LSCOLORS=gxBxhxDxfxhxhxhxhxcxcx # dark background | |
alias ls='ls -laghFG' | |
alias ll='ls -l' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from sys import exit | |
def start(): | |
print "Congratulations, you have been drafted to the NBA!" | |
print "What number were you drafted?" | |
pick = int(raw_input("> ")) | |
if pick > 60: | |
retire("That is impossible, which means you weren't drafted after all.") |