From 607bf4b0ec17f8263f2055484dce3c02b5c44024 Mon Sep 17 00:00:00 2001 From: Marcel Kapfer Date: Sat, 6 Apr 2019 07:44:02 +0200 Subject: [PATCH] Emacs: Added nix and haskell mode --- emacs/emacs.el | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/emacs/emacs.el b/emacs/emacs.el index 7864236..7538f18 100644 --- a/emacs/emacs.el +++ b/emacs/emacs.el @@ -1386,6 +1386,14 @@ signature-file is the path to the file which contains the signature." (use-package rust-mode :mode (("\\.rs\\'" . rust-mode))) +;; nix-mode +(use-package nix-mode + :mode (("\\.nix\\'" . nix-mode))) + +;; haskell-mode +(use-package haskell-mode + :mode (("\\.hs\\'" . haskell-mode))) + ;; all-the-icons ;; A utility package to collect various Icon Fonts and propertized them within Emacs (use-package all-the-icons)