-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.json
122 lines (122 loc) · 2.93 KB
/
settings.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"shellformat.path": "/usr/local/bin/shfmt",
"shellformat.flag": "-i=2 -bn -sr",
"vscode-neovim.useWSL": true,
"vscode-neovim.neovimExecutablePaths.linux": "/opt/nvim/bin/nvim",
"[python]": {
"editor.formatOnType": true
},
"cmake.configureOnOpen": true,
"editor.minimap.enabled": false,
"redhat.telemetry.enabled": false,
"cSpell.userWords": [
"ccmake",
"cmds",
"Constexpr",
"Keycloak",
"minio",
"sonarqube",
"structs",
"typedefs"
],
"[markdown]": {
"editor.defaultFormatter": "DavidAnson.vscode-markdownlint"
},
"[cpp]": {
"editor.defaultFormatter": "xaver.clang-format"
},
"zenMode.centerLayout": false,
"terminal.integrated.defaultProfile.linux": "bash",
"workbench.colorTheme": "Default Dark+",
"git.ignoreMissingGitWarning": true,
"security.workspace.trust.untrustedFiles": "open",
"clang-format.executable": "/home/pnelson/DEV/OTHER/llvm-project/build/bin/clang-format",
"editor.formatOnSave": true,
"[dockerfile]": {
"editor.defaultFormatter": "ms-azuretools.vscode-docker"
},
"[javascript]": {
"editor.defaultFormatter": "vscode.typescript-language-features"
},
"extensions.experimental.affinity": {
"asvetliakov.vscode-neovim": 1
},
"vscode-neovim.neovimExecutablePaths.darwin": "",
"vscode-neovim.neovimExecutablePaths.win32": "",
"vscode-neovim.logLevel": "debug",
"MATLAB.telemetry": false,
"MATLAB.matlabConnectionTiming": "never",
"[jsonc]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"[yaml]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
},
"yaml.format.printWidth": 100,
"prettier.printWidth": 110,
"autoDocstring.customTemplatePath": "/home/pnelson/doxygen.mustache",
"editor.semanticHighlighting.enabled": false,
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"markdown.extension.italic.indicator": "_",
"cSpell.enabledLanguageIds": [
"asciidoc",
"c",
"cpp",
"csharp",
"css",
"elixir",
"erlang",
"git-commit",
"go",
"graphql",
"handlebars",
"haskell",
"html",
"jade",
"java",
"javascript",
"javascriptreact",
"json",
"jsonc",
"jupyter",
"latex",
"less",
"markdown",
"php",
"plaintext",
"python",
"pug",
"restructuredtext",
"rust",
"scala",
"scss",
"scminput",
"swift",
"text",
"typescript",
"typescriptreact",
"vue",
"yaml",
"yml",
"sh"
],
"cmake.options.statusBarVisibility": "visible",
"remote.autoForwardPortsSource": "hybrid",
"syntax.highlightLanguages": [
// "c",
// "cpp",
// "python",
// "typescript",
// "typescriptreact",
// "javascript",
// "go",
// "rust",
// "php",
// "ruby",
// "shellscript",
// "ocaml",
// "lua"
]
}