This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"compatibility | |
set nocompatible | |
set modelines=0 | |
set encoding=utf-8 | |
filetype off | |
execute pathogen#infect() | |
"Syntax highlighting | |
"Detect filetype | |
filetype indent plugin on |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export GITAWAREPROMPT=~/.bash/git-aware-prompt | |
source $GITAWAREPROMPT/main.sh | |
BLACK=$(tput setaf 0) | |
RED=$(tput setaf 1) | |
GREEN=$(tput setaf 2) | |
YELLOW=$(tput setaf 3) | |
LIME_YELLOW=$(tput setaf 190) | |
POWDER_BLUE=$(tput setaf 153) | |
BLUE=$(tput setaf 4) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var gulp = require('gulp'), | |
browserSync = require('browser-sync').create(), | |
sass = require('gulp-ruby-sass'), | |
sourcemaps = require('gulp-sourcemaps'), | |
autoprefixer = require('gulp-autoprefixer'), | |
cssnano = require('gulp-cssnano'), | |
concat = require('gulp-concat'), | |
uncss = require('gulp-uncss'), | |
uglify = require('gulp-uglify'), | |
rename = require('gulp-rename'), |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[[ -s "$HOME/.profile" ]] && source "$HOME/.profile" # Load the default .profile | |
[[ -s "$HOME/.rvm/scripts/rvm" ]] && source "$HOME/.rvm/scripts/rvm" # Load RVM into a shell session *as a function* | |
export PATH="/usr/local/bin:$PATH" | |
alias simulator='open /Applications/Xcode.app/Contents/Developer/Applications/iOS\ Simulator.app' | |
alias web='cd ~/Dropbox/wip/web/' | |
alias gitdelete='git rm $(git ls-files --deleted)' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Settings: donde pondremos las variables que usaremos a lo largo del proyecto (variables) */ | |
/* Tools: donde pondremos las funciones y los mixins */ | |
/* Generic: Inter-project files (normalize, reset, etc.) */ | |
/* Base: cualquier HTML tag, sin ninguna clase */ | |
/* Objects: wrappers, layout, media… */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "Winproject", | |
"version": "1.0.0", | |
"description": "", | |
"main": "gulpfile.js", | |
"scripts": { | |
"test": "echo \"Error: no test specified\" && exit 1" | |
}, | |
"author": "Alejandro Camara", | |
"license": "ISC", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# NODE_MODULES # | |
################ | |
node_modules | |
**/node_modules/* | |
node_modules/** | |
# SASS_CACHE # | |
############## | |
**/.sass-cache | |
**/.sass-cache/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
\ 'html:5': "<!DOCTYPE html>\n" | |
\ ."<html lang=\"${lang}\">\n" | |
\ ."<head>\n" | |
\ ."\t<meta charset=\"${charset}\">\n" | |
\ ."\t<title></title>\n" | |
\ ."\t<link rel=\"stylesheet\" src=\"css/main.css\">\n" | |
\ ."\t<meta name=\"description\" content=\"\">\n" | |
\ ."\t<meta name=\"keywords\" content=\"\">\n" | |
\ ."</head>\n" | |
\ ."<body>\n\t${child}|\n</body>\n" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "inuit", | |
"private": true, | |
"dependencies": { | |
"inuit-defaults": "latest", | |
"inuit-responsive-settings": "latest", | |
"inuit-functions": "latest", | |
"inuit-mixins": "latest", | |
"inuit-responsive-tools": "latest", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Path to your oh-my-zsh installation. | |
export ZSH=/Users/win/.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" | |
# | |
DEFAULT_USER='win' |
OlderNewer