diff --git a/.gitignore b/.gitignore index e816dd7..12bab5f 100644 --- a/.gitignore +++ b/.gitignore @@ -5,3 +5,4 @@ gen/Gen gen/Crypto dist +*.sublime-workspace diff --git a/cryptonite.sublime-project b/cryptonite.sublime-project new file mode 100644 index 0000000..c5b1dc0 --- /dev/null +++ b/cryptonite.sublime-project @@ -0,0 +1,23 @@ +{ + "folders": + [ + { "path": "Crypto", "file_exclude_patterns": ["*.hi", "*.o"] }, + { "path": "cbits" }, + { "path": "tests", "file_exclude_patterns": ["*.html"] }, + { "path": "benchs" }, + { "path": "gen" }, + ], + "settings": + { + "tab_size": 4, + "translate_tabs_to_spaces": true + }, + "build_systems": + [ + { + "name": "Cabal-build", + "cmd": ["cabal", "build"], + "path": "/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin" + } + ] +}