Skip to content

Instantly share code, notes, and snippets.

View fedfigca's full-sized avatar

Federico Figueroa Cabezas fedfigca

View GitHub Profile
@fedfigca
fedfigca / .bashrc
Last active November 7, 2019 12:52
PS1
# get current branch in git repo
function parse_git_branch() {
BRANCH=`git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/\1/'`
if [ ! "${BRANCH}" == "" ]
then
STAT=`parse_git_dirty`
echo "(  ${BRANCH}${STAT})"
@fedfigca
fedfigca / profiles.json
Created September 22, 2019 00:40
Thanatos color theme for Microsoft Terminal
{
"schemes" :
[
{
"name": "Thanatos",
"background" : "#1a2b3c",
"black" : "#040404",
"blue" : "#062f4a",
"brightBlack" : "#3c3c3c",
"brightBlue" : "#7799ba",