Skip to content

Instantly share code, notes, and snippets.

View antonlindstrom's full-sized avatar
👓

Anton Lindström antonlindstrom

👓
View GitHub Profile
@jedi4ever
jedi4ever / logger0.pp
Created January 16, 2012 08:40
rabbitmq - plugins - puppet - provider
rabbitmq_plugin { $rabbitmq_plugin_list:
ensure => present,
require => Class['rabbitmq::server'],
provider => 'rabbitmq_plugins',
state => enabled
}
@antonlindstrom
antonlindstrom / tmux.conf
Created July 29, 2011 05:09
tmux config
set -g default-terminal "screen-256color"
set -g history-limit 2000
# Keys
bind-key a last-window
bind-key @ confirm-before kill-window
bind-key r source-file ~/.tmux.conf # reload
bind-key v split-window -h
bind-key ^V split-window -h
@jtimberman
jtimberman / macbook.md
Created November 12, 2010 14:48
How I set up my workstation

My current workstation toolchain environment was set up with the following, roughly in order.

  1. Latest Xcode from Apple to get development tools.

  2. Homebrew.

  3. A few nice things with Homebrew:

    brew install git ack wget tmux sloccount ec2-ami-tools ec2-api-tools rds-command-line-tools

" Anton Lindstrom's .vimrc
" https://gist.github.com/99008
" Getting rid of vi bugs and turns syntax highlighting on
set nocompatible
syntax on
" History
set history=1000