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
#!/bin/sh | |
# ==================================================================== | |
# This is the tmux configuration I use for setting up my Ruby on Rails | |
# Tutorial session | |
# | |
BASE="$HOME/sites/sample_app" | |
cd $BASE | |
tmux start-server |
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
# bind tmux commands to Ctrl-A for Vim compatibility | |
# and better ergonomics :) | |
unbind C-b | |
set -g prefix C-a | |
# Ctrl-A Ctrl-A switches to last window | |
bind C-a last-window | |
bind a send-prefix | |
# Rebind Ctrl-| to split the window horizontally [ | ] |
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
$ vim | |
Error detected while processing /home/Philip/.vim/bundle/ultisnips/plugin/UltiSnips.vim: | |
line 232: | |
Traceback (most recent call last): | |
File "<string>", line 1, in <module> | |
File "/home/Philip/.vim/bundle/ultisnips/plugin/UltiSnips/__init__.py", line 13, in <module> | |
from UltiSnips._diff import diff, guess_edit | |
File "/home/Philip/.vim/bundle/ultisnips/plugin/UltiSnips/_diff.py", line 7, in <module> | |
from UltiSnips import _vim | |
File "/home/Philip/.vim/bundle/ultisnips/plugin/UltiSnips/_vim.py", line 320, in <module> |