From 88ff52a10d0f6c079e61cfae90d98ae19c8c3804 Mon Sep 17 00:00:00 2001 From: Vincent Hanquez Date: Fri, 3 Apr 2015 07:41:43 +0100 Subject: [PATCH] add sublime-project file --- .gitignore | 1 + cryptonite.sublime-project | 23 +++++++++++++++++++++++ 2 files changed, 24 insertions(+) create mode 100644 cryptonite.sublime-project 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" + } + ] +}