This file contains hidden or 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'); | |
var stylus = require('gulp-stylus'); | |
var browserSync = require('browser-sync'); | |
var koutoSwiss = require('kouto-swiss'); | |
var jeet = require('jeet'); | |
var reload = browserSync.reload; | |
var paths = { | |
stylusEntry: ["./stylus/main.styl"], | |
stylusAll: ["./stylus/*.styl"] |
This file contains hidden or 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
pad(args, shorthand = true) | |
positions = top right bottom left | |
if shorthand | |
for i in (0..length(args) - 1) | |
args[i] = rem(args[i]) | |
padding: args | |
else | |
for i in (0..length(args) - 1) | |
if args[i] != 'x' |
This file contains hidden or 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
@mixin pad($paddings, $shorthand: true) { | |
$orientations: top right bottom left; | |
@if $shorthand { | |
@each $value in $paddings { | |
$paddings: set-nth($paddings, index($paddings, $value), rem($value)); | |
} | |
padding: $paddings; | |
} @else { | |
@for $i from 1 through length($paddings) { |
This file contains hidden or 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
[alias] | |
edis = add | |
statis = status | |
comitis = commit | |
puxis = push | |
pulis = pull | |
rebeisis = rebase | |
resetius = reset | |
mergius = merge |
This file contains hidden or 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
[user] | |
name = xxx | |
email = xxx | |
[core] | |
excludesfile = ~/.gitignore | |
[alias] | |
ad = add -i | |
br = branch |
This file contains hidden or 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
// COLORS | |
// ============================================================================ | |
// Based on: https://color.adobe.com/pt/novomr-color-03-color-theme-4255297/ | |
// White | |
$porcelain : #ecf0f1; | |
$white : #ffffff; | |
// Green | |
$observatory : #038b75; |
This file contains hidden or 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
Show hidden characters
{ | |
"always_show_minimap_viewport": true, | |
"bold_folder_labels": true, | |
"color_scheme": "Packages/Material Theme/schemes/Material-Theme-Darker.tmTheme", | |
"dictionary": "Packages/Language - English/en_US.dic", | |
"font_options": | |
[ | |
"gray_antialias" | |
], | |
"font_size": 12, |
This file contains hidden or 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
# Improve colors | |
set -g default-terminal "screen-256color" | |
set -g status-utf8 on | |
# http://stackoverflow.com/questions/22715071/vim-and-tmux-rendering-error | |
set-window-option -g utf8 on | |
# Scrolling | |
set -g mouse on |
This file contains hidden or 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 ZSH="$HOME/.oh-my-zsh" | |
ZSH_THEME="gitster" | |
export LANG=en_US.UTF-8 | |
HIST_STAMPS="dd.mm.yyyy" | |
export UPDATE_ZSH_DAYS=1 | |
plugins=(git) | |
source $ZSH/oh-my-zsh.sh |
This file contains hidden or 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
require 'fileutils' | |
home = %x`echo $HOME`.gsub("\n", '') | |
dotfiles_path = home + '/dotfiles/' | |
# All the files to be filtered | |
exceptions = ['.', '..', '.git'] | |
# Filter directories such as '.' and '..' | |
dotfiles = Dir.glob(dotfiles_path + '.*').delete_if { |file| |
OlderNewer