aboutsummaryrefslogtreecommitdiff
path: root/.vscode
diff options
context:
space:
mode:
authorGabriel Dos Reis <gdr@axiomatics.org>2015-12-23 05:20:09 -0800
committerGabriel Dos Reis <gdr@axiomatics.org>2015-12-23 05:20:09 -0800
commit33a5d910f263ad94cec761e0d93c11acfa6b7ccd (patch)
tree2a70a131b735c72e3110f3e581262805792be1e8 /.vscode
parent2c5d67a97f944c08f3408328d41e5b5fe309aff7 (diff)
downloadopen-axiom-33a5d910f263ad94cec761e0d93c11acfa6b7ccd.tar.gz
Add VS Code customization file.
Diffstat (limited to '.vscode')
-rw-r--r--.vscode/settings.json52
1 files changed, 52 insertions, 0 deletions
diff --git a/.vscode/settings.json b/.vscode/settings.json
new file mode 100644
index 00000000..f607246c
--- /dev/null
+++ b/.vscode/settings.json
@@ -0,0 +1,52 @@
+// Place your settings in this file to overwrite default and user settings.
+{
+ //-------- Editor configuration --------
+ // Controls visibility of line numbers
+ "editor.lineNumbers": true,
+
+ // Controls the rendering size of tabs in characters. Accepted values: "auto", 2, 4, 6, etc. If set to "auto", the value will be guessed when a file is opened.
+ "editor.tabSize": 2,
+
+ // Controls if the editor will insert spaces for tabs. Accepted values: "auto", true, false. If set to "auto", the value will be guessed when a file is opened.
+ "editor.insertSpaces": true,
+
+ // Controls after how many characters the editor will wrap to the next line. Setting this to 0 turns on viewport width wrapping
+ "editor.wrappingColumn": 0,
+
+ // Controls if the editor should automatically close brackets after opening them
+ "editor.autoClosingBrackets": false,
+
+ // Controls if the editor should automatically format the line after typing
+ "editor.formatOnType": false,
+
+ // Controls whether the editor should render whitespace characters
+ "editor.renderWhitespace": false,
+
+ //-------- Files configuration --------
+
+ // Configure glob patterns for excluding files and folders.
+ "files.exclude": {
+ "**/.git": true,
+ "**/.DS_Store": true
+ },
+
+ // The default character set encoding to use when reading and writing files.
+ "files.encoding": "utf8",
+
+ // When enabled, will trim trailing whitespace when you save a file.
+ "files.trimTrailingWhitespace": false,
+
+ //-------- Git configuration --------
+
+ // Is git enabled
+ "git.enabled": true,
+
+ // Whether auto fetching is enabled.
+ "git.autofetch": false,
+
+ //-------- Markdown preview configuration --------
+
+ // A list of URLs or local paths to CSS style sheets to use from the markdown preview.
+ "markdown.styles": []
+
+} \ No newline at end of file