This shows you the differences between two versions of the page.
cs:codeoss [2025/04/11 09:19] paolo_bolzoni Code OSS notes, created |
cs:codeoss [2025/05/28 06:34] (current) paolo_bolzoni Tidy up settings |
||
---|---|---|---|
Line 15: | Line 15: | ||
The starting settings are: | The starting settings are: | ||
- | "telemetry.enableCrashReporter": false, | + | **User Setting.json** |
- | "telemetry.enableTelemetry": false, | + | |
- | "workbench.enableExperiments": false, | + | "telemetry.feedback.enabled": false, |
"workbench.settings.enableNaturalLanguageSearch": false, | "workbench.settings.enableNaturalLanguageSearch": false, | ||
"editor.fontFamily": "\"Iosevka paopao\", monospace", | "editor.fontFamily": "\"Iosevka paopao\", monospace", | ||
"editor.fontSize": 16, | "editor.fontSize": 16, | ||
+ | |||
+ | **User profiles Setting.json** | ||
+ | |||
+ | "telemetry.enableCrashReporter": false, | ||
+ | "telemetry.enableTelemetry": false, | ||
+ | "telemetry.telemetryLevel": "off", | ||
+ | "workbench.enableExperiments": false, | ||
---- | ---- | ||
Line 34: | Line 41: | ||
The vim extension Vim ''vscodevim'' introduces few vim-like behaviors to make easier to navigate the code. Here are the settings, notably the `"vim.handleKeys"` is important to free CTRL-P. | The vim extension Vim ''vscodevim'' introduces few vim-like behaviors to make easier to navigate the code. Here are the settings, notably the `"vim.handleKeys"` is important to free CTRL-P. | ||
- | "vim.autoindent": false, | + | |
+ | **User Setting.json** | ||
"vim.normalModeKeyBindingsNonRecursive": [ | "vim.normalModeKeyBindingsNonRecursive": [ | ||
{ | { | ||
Line 53: | Line 62: | ||
} | } | ||
], | ], | ||
+ | |||
+ | **User profiles Setting.json** | ||
+ | |||
+ | "vim.autoindent": false, | ||
"vim.handleKeys": { | "vim.handleKeys": { | ||
- | "<C-p>": false | + | "<C-p>": false, |
"<C-k>": false, | "<C-k>": false, | ||
"<C-q>": false, | "<C-q>": false, |