Skip to content

Instantly share code, notes, and snippets.

View RomainEndelin's full-sized avatar

Romain Endelin RomainEndelin

View GitHub Profile
### Keybase proof
I hereby claim:
* I am romainendelin on github.
* I am rendelin (https://keybase.io/rendelin) on keybase.
* I have a public key ASDwxYg3mqKNb9q1yP_1C1eIs8VNh8dFuSk_1AvH7d28Ago
To claim this, I am signing this object:
@RomainEndelin
RomainEndelin / .tmux.conf
Last active August 29, 2015 14:20
A basic vimrc & tmuxrc for python dev
# important for solarized color theme with vim
set -g default-terminal "screen-256color"
# Theme
if-shell "test -f $HOME/.tmux/theme.conf" "source $HOME/.tmux/theme.conf"
# Rebind the main key to Ctrl-a, rather than Ctrl-b
unbind C-b
set -g prefix C-a
@RomainEndelin
RomainEndelin / eslintrc
Created October 16, 2014 13:21
Sensible javascript syntax rules
{
"env": {
"browser": true,
"node": true
},
"globals": {
"Ember": false
},
"rules": {
"block-scoped-var": 2,