Skip to content

Instantly share code, notes, and snippets.

View raabuchanan's full-sized avatar
🤖
Building robots

Russell Buchanan raabuchanan

🤖
Building robots
View GitHub Profile
@raabuchanan
raabuchanan / Default (Linux).sublime-keymap
Created May 31, 2018 00:55
Prefered Key Bindings for Sublime
[
{ "keys": ["ctrl+r"], "command": "toggle_comment", "args": { "block": false } },
]
@raabuchanan
raabuchanan / Preferences.sublime-settings
Created May 31, 2018 00:52
Prefered Sublime preferences
{
"ignored_packages":
[
"Vintage"
],
"spell_check": true,
"dictionary": "Packages/Language - English/en_US.dic"
}
@raabuchanan
raabuchanan / .tmux.conf
Last active May 31, 2018 01:45
Make tmux useable
# From Ham Vockee
# https://www.hamvocke.com/blog/a-guide-to-customizing-your-tmux-conf/
# remap prefix from 'C-b' to 'C-a'
unbind C-b
set-option -g prefix C-a
bind-key C-a send-prefix
# split panes using | and -
bind | split-window -h