-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.json
More file actions
117 lines (117 loc) · 5.06 KB
/
settings.json
File metadata and controls
117 lines (117 loc) · 5.06 KB
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
{
"git.enableSmartCommit": true,
"[javascript]": {
"editor.defaultFormatter": "vscode.typescript-language-features"
},
"dart.warnWhenEditingFilesOutsideWorkspace": false,
"[html]": {
"editor.defaultFormatter": "vscode.html-language-features"
},
"html.format.wrapLineLength": 0,
"dart.debugExternalLibraries": false,
"dart.debugSdkLibraries": false,
"liveshare.presence": true,
"[javascriptreact]": {
"editor.defaultFormatter": "vscode.typescript-language-features"
},
"liveServer.settings.donotShowInfoMsg": true,
"javascript.updateImportsOnFileMove.enabled": "always",
"livePugCompiler.savePath": "/",
"workbench.statusBar.visible": true,
"editor.fontLigatures": true,
"liveServer.settings.donotVerifyTags": true,
"tailwindCSS.emmetCompletions": true,
"typescript.updateImportsOnFileMove.enabled": "always",
"editor.tabSize": 2,
"[typescript]": {
"editor.defaultFormatter": "vscode.typescript-language-features"
},
"[json]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"diffEditor.ignoreTrimWhitespace": false,
"[jsonc]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"workbench.colorTheme": "GitHub Dark",
"files.defaultLanguage": "${activeEditorLanguage}",
"workbench.editor.pinnedTabSizing": "shrink",
"editor.suggest.insertMode": "replace",
// "php-cs-fixer.config": "/home/kode/.vscode/php-cs-fixer.php",
"editor.formatOnSave": true,
"gitlens.mode.active": "zen",
"editor.suggestSelection": "recentlyUsedByPrefix",
// "php-cs-fixer.executablePath": "${extensionPath}/php-cs-fixer.phar",
// "php-cs-fixer.lastDownload": 1628145691340,
"gitlens.codeLens.enabled": false,
"gitlens.statusBar.enabled": false,
"gitlens.currentLine.enabled": false,
"gitlens.hovers.currentLine.over": "line",
"editor.inlineSuggest.enabled": true,
"github.copilot.enable": {
"*": true,
"yaml": true,
"plaintext": false,
"markdown": false,
"typescriptreact": true
},
// "workbench.sideBar.location": "right",
"workbench.editor.enablePreview": false,
"git.confirmSync": false,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"eslint.format.enable": true,
"prettier.printWidth": 220,
"prettier.semi": false,
"prettier.jsxSingleQuote": true,
"[typescriptreact]": {
"editor.defaultFormatter": "vscode.typescript-language-features"
},
// "editor.lineHeight": 2,
"editor.minimap.enabled": false,
"update.mode": "none",
"screencastMode.onlyKeyboardShortcuts": true,
"settingsSync.ignoredSettings": [
"update.mode"
],
// Causes the debug view to automatically appear when a breakpoint is hit. This
// setting is global and not configurable per-language.
"debug.openDebug": "openOnDebugBreak",
"[dart]": {
// Automatically format code on save and during typing of certain characters
// (like `;` and `}`).
"editor.formatOnSave": true,
"editor.formatOnType": true,
// Draw a guide line at 80 characters, where Dart's formatting will wrap code.
"editor.rulers": [
80
],
// Disables built-in highlighting of words that match your selection. Without
// this, all instances of the selected text will be highlighted, interfering
// with Dart's ability to highlight only exact references to the selected variable.
"editor.selectionHighlight": false,
// By default, VS Code prevents code completion from popping open when in
// "snippet mode" (editing placeholders in inserted code). Setting this option
// to `false` stops that and allows completion to open as normal, as if you
// weren't in a snippet placeholder.
"editor.suggest.snippetsPreventQuickSuggestions": false,
// By default, VS Code will pre-select the most recently used item from code
// completion. This is usually not the most relevant item.
//
// "first" will always select top item
// "recentlyUsedByPrefix" will filter the recently used items based on the
// text immediately preceding where completion was invoked.
"editor.suggestSelection": "first",
// Allows pressing <TAB> to complete snippets such as `for` even when the
// completion list is not visible.
"editor.tabCompletion": "onlySnippets",
// By default, VS Code will populate code completion with words found in the
// current file when a language service does not provide its own completions.
// This results in code completion suggesting words when editing comments and
// strings. This setting will prevent that.
"editor.wordBasedSuggestions": false
},
"explorer.confirmDragAndDrop": false,
"php-cs-fixer.executablePath": "${extensionPath}/php-cs-fixer.phar"
}