diff options
-rw-r--r-- | .vscode/settings.json | 52 |
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 |