This file contains hidden or 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
#!/usr/bin/env bash | |
# Set terminal.integrated.shell.osx in User Settings to wherever you save this | |
HASH="`pwd | md5`" | |
SESSION="${PWD##*/} ${HASH: -6:6}" | |
SESSION_CLEAN="`echo $SESSION | sed 's/\.//g'`" | |
tmux attach-session -d -t "$SESSION_CLEAN" || tmux new-session -s "$SESSION_CLEAN" |
This file contains hidden or 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
/* | |
* Atom Stylesheet | |
* | |
* .generate-indents(): makes pretty indent guides. | |
* Enable 'Settings' -> 'Show Indent Guide' and taste the rainbow! | |
* | |
*/ | |
// Default and base colors for indent guides | |
@indentColor: hsla(345, 100%, 55%, .3); // Manipulate this to make pretty |