Skip to content

Instantly share code, notes, and snippets.

@icetan
icetan / gtags_scala.md
Last active June 13, 2021 08:20 — forked from tsdeng/emacs_scala.md
Set up ctags and scala support with GNU Global/Gtags

Basic Support

  1. Install ctags-exuberant
  2. Install gnu global
    • brew install global --with-exuberant-ctags
    • add the following lines in bash export GTAGSCONF=/usr/local/share/gtags/gtags.conf export GTAGSLABEL=ctags
@icetan
icetan / example.coffee
Created May 18, 2012 08:46 — forked from dc/example.coffee
ANSI styling — node.js
t = require('terminal')
console.log "#{t.magenta}Hello #{t.blue}World!#{t.reset}"