diff options
author | William Carroll <wpcarro@gmail.com> | 2018-07-06T17·34-0400 |
---|---|---|
committer | William Carroll <wpcarro@gmail.com> | 2018-07-19T16·00-0400 |
commit | bb8cb310fa67db5f1431aeb69607722ebbb51217 (patch) | |
tree | 3fbac411a10cfb3da77df99698f26195b9becc84 /emacs.d/snippets | |
parent | b147b5fbd02440b602710bb86340bfe33ba21895 (diff) |
Extend Haskell support
- Format imports on buffer-save. - Adds two new snippets
Diffstat (limited to 'emacs.d/snippets')
-rw-r--r-- | emacs.d/snippets/haskell-mode/language-extension | 5 | ||||
-rw-r--r-- | emacs.d/snippets/haskell-mode/separator | 5 |
2 files changed, 10 insertions, 0 deletions
diff --git a/emacs.d/snippets/haskell-mode/language-extension b/emacs.d/snippets/haskell-mode/language-extension new file mode 100644 index 000000000000..9d6084acb40d --- /dev/null +++ b/emacs.d/snippets/haskell-mode/language-extension @@ -0,0 +1,5 @@ +# -*- mode: snippet -*- +# name: language extension +# key: lang +# -- +{-# LANGUAGE $1 #-} \ No newline at end of file diff --git a/emacs.d/snippets/haskell-mode/separator b/emacs.d/snippets/haskell-mode/separator new file mode 100644 index 000000000000..1ab0d762b611 --- /dev/null +++ b/emacs.d/snippets/haskell-mode/separator @@ -0,0 +1,5 @@ +# -*- mode: snippet -*- +# name: Separator +# key: - +# -- +-------------------------------------------------------------------------------- \ No newline at end of file |