mirror of
https://gitlab.com/mlunax/dotfiles.git
synced 2025-04-12 05:40:17 +00:00
add vscodium user settings
This commit is contained in:
parent
c515ec37c7
commit
d1856c4e4d
1 changed files with 42 additions and 0 deletions
42
.config/VSCodium/User/settings.json
Normal file
42
.config/VSCodium/User/settings.json
Normal file
|
@ -0,0 +1,42 @@
|
|||
{
|
||||
"workbench.colorTheme": "Atom One Dark",
|
||||
"editor.fontFamily": "'Fira Code','Droid Sans Mono', 'monospace', monospace, 'Droid Sans Fallback'",
|
||||
"editor.fontLigatures": true,
|
||||
"workbench.iconTheme": "vscode-icons",
|
||||
"editor.minimap.enabled": false,
|
||||
"editor.formatOnSave": true,
|
||||
"[typescript]": {
|
||||
"editor.defaultFormatter": "vscode.typescript-language-features"
|
||||
},
|
||||
"files.autoSave": "onFocusChange",
|
||||
"python.formatting.provider": "black",
|
||||
"python.formatting.blackPath": "/home/lunax/.local/bin/black",
|
||||
"[dart]": {
|
||||
"editor.formatOnSave": true,
|
||||
"editor.formatOnType": true,
|
||||
"editor.rulers": [
|
||||
80
|
||||
],
|
||||
"editor.selectionHighlight": false,
|
||||
"editor.suggest.snippetsPreventQuickSuggestions": false,
|
||||
"editor.suggestSelection": "first",
|
||||
"editor.tabCompletion": "onlySnippets",
|
||||
"editor.wordBasedSuggestions": false,
|
||||
"editor.defaultFormatter": "Dart-Code.dart-code"
|
||||
},
|
||||
"dart.allowAnalytics": false,
|
||||
"dart.debugExternalLibraries": false,
|
||||
"dart.debugSdkLibraries": false,
|
||||
"[python]": {
|
||||
"editor.defaultFormatter": "ms-python.python"
|
||||
},
|
||||
"[go]": {
|
||||
"editor.defaultFormatter": "golang.go"
|
||||
},
|
||||
"vsicons.dontShowNewVersionMessage": true,
|
||||
"vim.handleKeys": {
|
||||
"<C-c>": false,
|
||||
"<C-v>": false,
|
||||
"<C-x>": false
|
||||
}
|
||||
}
|
Loading…
Add table
Reference in a new issue