diff options
Diffstat (limited to 'languages.json')
| -rw-r--r-- | languages.json | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/languages.json b/languages.json new file mode 100644 index 0000000..8e4224b --- /dev/null +++ b/languages.json @@ -0,0 +1,50 @@ +{ + "python": { + "extension": "py", + "comment" : { + "top": "###", + "prefix" : "# ", + "bottom": "###" + } + }, + "haskell": { + "extension": "hs", + "comment" : { + "top": "----", + "prefix" : "-- ", + "bottom": "----" + } + }, + "c": { + "extension": "c", + "comment" : { + "top": "/*", + "prefix" : "* ", + "bottom": "*/" + } + }, + "lisp": { + "extension": "lisp", + "comment" : { + "top": ";;;;;;;;", + "prefix" : ";;;; ", + "bottom": ";;;;;;;;" + } + }, + "rust": { + "extension": "rs", + "comment": { + "top": "/*", + "prefix" : "* ", + "bottom": "*/" + } + }, + "julia": { + "extension": "jl", + "comment": { + "top": "###", + "prefix" : "# ", + "bottom": "###" + } + } +} |
