;;; misc.el --- Miscellaneous programming languages. -*- lexical-binding: t; -*- ;; Time-stamp: <2020-02-18T17:06:25+0100> ;;; Commentary: ;; Programming languages I don't normally program in and only care about syntax ;; highlighting and indentation. ;;; Code: (use-package go-mode :mode ("\\.go$" . go-mode) ) (provide 'programming/misc) ;;; misc.el ends here