Skip to content

Instantly share code, notes, and snippets.

set-option -g default-shell "/bin/bash"
#set-option -g default-command "bash -l"
set-option -g default-command "reattach-to-user-namespace -l bash"
# Set the default terminal mode to 256color mode.
set -g default-terminal "screen-256color"
# Setting the prefix from `C-b` to `C-a`.
# By remapping the `CapsLock` key to `Ctrl`,
# you can make triggering commands more comfottable!
set -g prefix C-a
execute pathogen#infect()
filetype plugin indent on
if &term =~ "xterm-256color"
set t_Co=256
colorscheme xoria256
endif
if has("gui_macvim")
set fuopt=maxvert,maxhorz " full screen takes entire screen
set guifont=FiraMono:h14
@Zelnox
Zelnox / .bashrc
Last active August 29, 2015 14:04
bashrc
#aliases
alias ls='ls -G' # for colours
alias gw='cd ~/Documents/work/'
alias gsb='cd ~/Documents/sandbox/'
# Homebrew
if [ -f /usr/local/etc/bash_completion ]; then
. /usr/local/etc/bash_completion
fi
@Zelnox
Zelnox / config.fish
Created September 25, 2014 23:13
.config/fish/config.fish
# Hi
#
# Tmuxinator
#[[ -s $HOME/.tmuxinator/scripts/tmuxinator ]] and source $HOME/.tmuxinator/scripts/tmuxinator
# Exports
set -x MYSQL_SOCKET /tmp/mysql.sock
#set -x PATH $PATH:/usr/local/share/python # to locate powerline binary
set -x EDITOR /usr/local/bin/vim