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
| #!/bin/sh | |
| tmux -2 new-session -n multish -d -s multish | |
| tmux split-window -h | |
| tmux select-pane -t 0 | |
| tmux -2 attach-session -t multish |
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
Show hidden characters
| [ | |
| /* | |
| Ayin theme for Sublime Text 2 | |
| Bright variant of the Nil theme. | |
| https://github.com/nilium/st2-nil-theme | |
| */ | |
| /*============================================================================== |
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
| #!/bin/sh | |
| if [ -z "$1" ]; then | |
| SESSIONNAME="devsh" | |
| else | |
| SESSIONNAME="devsh-$1" | |
| fi | |
| tmux kill-session -t $SESSIONNAME |
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
| set -g set-titles off | |
| #set -g set-titles-string "#T" | |
| # Prefix is Ctrl-A. | |
| set -g prefix C-a | |
| bind C-a send-prefix | |
| unbind C-b | |
| #set -sg escape-time 1 | |
| set -g base-index 1 |
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
| # bash/zsh git prompt support | |
| # | |
| # Copyright (C) 2006,2007 Shawn O. Pearce <[email protected]> | |
| # Distributed under the GNU General Public License, version 2.0. | |
| # | |
| # This script allows you to see repository status in your prompt. | |
| # | |
| # To enable: | |
| # | |
| # 1) Copy this file to somewhere (e.g. ~/.git-prompt.sh). |
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
| # Create aliases for pbcopy and pbpaste. | |
| alias pbcopy='xsel -b -i' | |
| alias pbpaste='xsel -b -o' |
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
| [global_config] | |
| enabled_plugins = APTURLHandler, LaunchpadCodeURLHandler, LaunchpadBugURLHandler | |
| title_transmit_bg_color = "#d30102" | |
| focus = system | |
| [keybindings] | |
| [profiles] | |
| [[default]] | |
| scrollbar_position = hidden | |
| palette = "#073642:#d30102:#859900:#b58900:#6c71c4:#d33682:#2aa198:#839496:#586e75:#cb4b16:#859900:#b58900:#268bd2:#dc322f:#2aa198:#93a1a1" | |
| login_shell = True |
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
| #!/bin/sh | |
| if [ -z "$1" ]; then | |
| SESSIONNAME="devsh" | |
| else | |
| SESSIONNAME="devsh-$1" | |
| fi | |
| tmux -2 new-session -n dev -d -s $SESSIONNAME |
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
| /* float clearing for IE6 */ | |
| * html .clearfix{ | |
| height: 1%; | |
| overflow: visible; | |
| } | |
| /* float clearing for IE7 */ | |
| *+html .clearfix{ | |
| min-height: 1%; | |
| } |
NewerOlder