remove tmuxifier, use custom function isted

'
main
Steffen Rademacker 10 years ago
parent 8067544771
commit 497a91999e

3
.gitmodules vendored

@ -4,9 +4,6 @@
[submodule "zsh/zsh-syntax-highlighting"]
path = zsh/zsh-syntax-highlighting
url = https://github.com/zsh-users/zsh-syntax-highlighting.git
[submodule "tmux/tmuxifier"]
path = tmux/tmuxifier
url = https://github.com/jimeh/tmuxifier.git
[submodule "zsh/zsh-completions"]
path = zsh/zsh-completions
url = https://github.com/zsh-users/zsh-completions.git

@ -63,7 +63,6 @@ alias devr='devs && dev'
# tmux
alias t='tmux -u -2'
alias ta='tmux attach'
alias tmd='tmuxifier load-window dev'
# all in one homebrew, gem update commands

@ -27,9 +27,6 @@ export NODE_PATH=/usr/local/lib/jsctags/:$NODE_PATH
# disable auto titling fixes tmux window
export DISABLE_AUTO_TITLE=true
# tmuxifier
export TMUXIFIER_LAYOUT_PATH="$HOME/dotfiles/tmux"
# grep
export GREP_OPTIONS='--color=auto'
export GREP_COLOR='1;32'

@ -1,8 +1,30 @@
# no tmuxifier, just tmux-commands for creating a dev-session
function tmd() {
cd ~/Sites/$1
tmux rename-session $1
git status
tmux rename-window gitngulp
tmux split-window -h -p 50 -d
tmux new-window -n scss -d
tmux new-window -n js -d
tmux new-window -n templates -d
tmux send-keys -t scss 'cd source/scss && vim' Enter
tmux send-keys -t js 'cd source/js && vim' Enter
tmux send-keys -t templates 'cd public && vim' Enter
tmux select-window -t gitngulp
tmux select-pane -t 2
tmux send-keys -t gitngulp 'gulp' Enter
}
# a small function for finding stuff
function fname() {
find . -iname "*$@*";
}
function schalala() {
}
function take() {
mkdir -p $1

@ -55,7 +55,6 @@ ln -s ~/dotfiles/vimrc ~/.vimrc
ln -s ~/dotfiles/zsh ~/.zsh
ln -s ~/dotfiles/zshrc ~/.zshrc
ln -s ~/dotfiles/zsh/pure/pure.zsh /usr/local/share/zsh/site-functions/prompt_pure_setup
ln -s ~/dotfiles/tmux/tmuxifier ~/.tmuxifier
# set xterm/screen terminals to enable italic fonts in terminal
tic ~/dotfiles/install/screen-256color-italic.terminfo

@ -1,17 +0,0 @@
# Set window root path. Default is `$session_root`.
# Must be called before `new_window`.
window_root "./"
# Create new window. If no argument is given, window name will be based on
# layout file name.
new_window "devshell"
# Split window into panes.
split_h 50
# Run commands.
run_cmd "git status" 1 # runs in active pane
run_cmd "grunt watch" 2 # runs in pane 1
# Set active pane.
select_pane 1

@ -1 +0,0 @@
Subproject commit 6f98020309617dd2a1686cb3a06bcc00aad003e5

@ -62,9 +62,5 @@ autoload colors; colors;
export LSCOLORS="Gxfxcxdxbxegedabagacad"
eval `gdircolors $HOME/dotfiles/zsh/dircolors-solarized/dircolors.256dark`
# load tmuxifier
eval "$(tmuxifier init -)"
# rbenv
if which rbenv > /dev/null; then eval "$(rbenv init -)"; fi

Loading…
Cancel
Save