2022-05-09 17:17:21 +02:00
|
|
|
;;; wpc-language-support.el --- Support for miscellaneous programming languages -*- lexical-binding: t -*-
|
|
|
|
|
|
|
|
;; Author: William Carroll <wpcarro@gmail.com>
|
|
|
|
;; Version: 0.0.1
|
|
|
|
;; Package-Requires: ((emacs "25.1"))
|
|
|
|
|
|
|
|
;;; Commentary:
|
|
|
|
;; I defined this module to declutter my init.el.
|
|
|
|
;;
|
|
|
|
;; When a particular programming-language's configuration gets too complicated,
|
|
|
|
;; I break it out into a dedicated module. Everything else gets dumped in
|
|
|
|
;; "Miscellaneous Configuration".
|
|
|
|
|
|
|
|
;;; Code:
|
|
|
|
|
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
;; Dedicated Modules
|
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
|
|
|
|
(require 'wpc-lisp)
|
|
|
|
(require 'wpc-haskell)
|
|
|
|
(require 'wpc-elixir)
|
|
|
|
(require 'wpc-nix)
|
|
|
|
(require 'wpc-rust)
|
|
|
|
(require 'wpc-clojure)
|
|
|
|
(require 'wpc-prolog)
|
|
|
|
|
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
;; Miscellaneous Configuration
|
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
|
|
|
|
(use-package csharp-mode)
|
2022-05-09 19:40:59 +02:00
|
|
|
(use-package terraform-mode)
|
2022-05-09 17:17:21 +02:00
|
|
|
|
|
|
|
(provide 'wpc-language-support)
|
|
|
|
;;; wpc-language-support.el ends here
|