Skip to content

Instantly share code, notes, and snippets.

View marcosgabarda's full-sized avatar
coffee?

Marcos Gabarda marcosgabarda

coffee?
View GitHub Profile
@marcosgabarda
marcosgabarda / .travis.yml
Last active August 29, 2015 14:02
Travis configuration file working with my default Django project template.
language: python
python:
- "3.3"
- "3.4"
install:
- "pip install --quiet coveralls"
- "pip install --quiet -r requirements/local.txt"
@marcosgabarda
marcosgabarda / README.md
Last active August 29, 2015 14:02
Color profile for Gnome Terminal based on Flat UI colors (http://flatuicolors.com/)

How to export and import

$ gconftool-2 --dump /apps/gnome-terminal/profiles > profiles.xml

$ gconftool-2 --load profiles.xml

# Path to your oh-my-zsh installation.
export ZSH=$HOME/.oh-my-zsh
# Set name of the theme to load.
# Look in ~/.oh-my-zsh/themes/
# Optionally, if you set this to "random", it'll load a random theme each
# time that oh-my-zsh is loaded.
ZSH_THEME="agnoster"
# Example aliases
@marcosgabarda
marcosgabarda / .vimrc
Last active August 29, 2015 14:01
My current .vimrc file
set nocompatible
filetype off
" set the runtime path to include Vundle and initialize
set rtp+=~/.vim/bundle/vundle/
call vundle#rc()
" alternatively, pass a path where Vundle should install bundles
"let path = '~/some/path/here'
"call vundle#rc(path)