Misc haskell stuff, snippets, etc

This commit is contained in:
Griffin Smith 2018-09-18 10:18:20 -04:00
parent 8ba14144a3
commit 29c7632fd2
19 changed files with 341 additions and 250 deletions

7
snippets/js2-mode/record Normal file
View file

@ -0,0 +1,7 @@
# -*- mode: snippet -*-
# name: record
# key: rec
# --
export default class $1 extends Record({
$2
}) {}