Skip to content

Instantly share code, notes, and snippets.

View sourcerebels's full-sized avatar

Edu Rodríguez Castillo sourcerebels

View GitHub Profile
@sourcerebels
sourcerebels / gvimrc
Created February 15, 2011 09:19
Vim > Configuration
" Set the font
set guifont=Inconsolata\ 12
" My favourite color scheme for the GUI
colorscheme koehler
" Remove toolbar
set guioptions-=T
" Remove right scrollbar
@sourcerebels
sourcerebels / pimp-my-gedit.sh
Created February 15, 2011 08:03
This script installs some useful gedit plugins
sudo apt-add-repository ppa:ubuntu-on-rails/ppa
sudo apt-get update
sudo apt-get install gedit-plugins gedit-gmate
@sourcerebels
sourcerebels / diff.py
Created February 14, 2011 17:30
python script to use meld as diff tool for git diff
#!/usr/bin/python
# USE: git config --global diff.external diff.py
import sys
import os
os.system('meld "%s" "%s"' % (sys.argv[2], sys.argv[5]))