| description |
|---|
Hugo Cisneros' resume |
For a PDF version, see here
| #!/bin/bash | |
| input=$(cat) | |
| # Color constants (using $'...' so escape sequences are real) | |
| RST=$'\033[0m' | |
| DIM=$'\033[2m' | |
| RED=$'\033[31m' | |
| GRN=$'\033[32m' | |
| YLW=$'\033[33m' | |
| MAG=$'\033[35m' |
| description |
|---|
Hugo Cisneros' resume |
For a PDF version, see here
| ;;; publish --- Summary | |
| ;;; Commentary: | |
| (require 'find-lisp) | |
| ;;; Code: | |
| (defun hugcis/publish-note (file) | |
| "Publish a note in FILE." | |
| (with-current-buffer (find-file-noselect file) | |
| (projectile-mode -1) | |
| (setq org-hugo-section "notes" |
| # Original file https://bitbucket.org/durdn/cfg/raw/master/.bin/install.sh | |
| # Config is stored in $HOME as a bare git repo | |
| git clone --bare https://github.com/hugcis/dotfiles.git $HOME/.cfg | |
| function config { | |
| /usr/bin/git --git-dir=$HOME/.cfg/ --work-tree=$HOME $@ | |
| } | |
| mkdir -p .config-backup |