Skip to content

Instantly share code, notes, and snippets.

View warantesbr's full-sized avatar

Willian Arantes warantesbr

View GitHub Profile
@warantesbr
warantesbr / config.el
Created July 13, 2016 19:18 — forked from pao/config.el
One of my config.el files...
(setq w32-get-true-file-attributes nil)
(add-to-list 'load-path
(concat user-emacs-directory
(convert-standard-filename "personal/modules")))
(prelude-require-packages
'(nyan-mode
ag
clang-format
@warantesbr
warantesbr / .git_aliases
Last active January 9, 2020 18:42 — forked from rappleg/.git_aliases
Git Aliases
alias vig='vi $HOME/scripts/bash/.git_aliases'
# GIT aliases
alias st='git status --short'
alias rb='git rebase -p'
alias rbi='git rebase -p --interactive'
alias rbm='git rebase -p master'
alias gcp='git cherry-pick'
alias stash='git stash'
alias pop='git stash pop'