-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.json
More file actions
79 lines (64 loc) · 2.17 KB
/
Copy pathsettings.json
File metadata and controls
79 lines (64 loc) · 2.17 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
{
// Editor appearance and theme
"editor.fontSize": 18,
"editor.lineHeight": 28,
"workbench.colorTheme": "Oceanic Next Sublime + Sweet Bar",
"workbench.iconTheme": "file-icons",
// Block blinking cursor
"editor.cursorStyle": "block",
"editor.cursorBlinking": "phase",
// Hide minimap
"editor.minimap.enabled": false,
// Disallow scrolling past the last line
"editor.scrollBeyondLastLine": false,
// Max line width
"editor.wordWrap": "on",
"editor.rulers": [
100,
120
],
// Hide color picker/decorator on CSS files
"editor.colorDecorators": false,
// Start off with an empty window
"workbench.startupEditor": "newUntitledFile",
// Hide the "open editors" left pane
"explorer.openEditors.visible": 0,
// Disable confirmation when moving things around in the explorer panel
"explorer.confirmDragAndDrop": false,
// EditorConfig-like settings
"files.insertFinalNewline": true,
"files.trimTrailingWhitespace": true,
"editor.tabSize": 4,
// Flow support
"flow.useNPMPackagedFlow": true,
"javascript.validate.enable": false,
// Prettier
"prettier.singleQuote": true,
"prettier.printWidth": 100,
"prettier.disableLanguages": [
"html",
"json",
"markdown"
],
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
// Disable automatically update import statements when moving files around
"javascript.updateImportsOnFileMove.enabled": "never",
// Breadcrumbs
"breadcrumbs.enabled": true,
// Project Manager extension settings
"projectManager.git.baseFolders": [
"/Users/fknussel/salt-developer/code",
"/Users/fknussel/workspace"
],
"projectManager.showProjectNameInStatusBar": true,
"projectManager.openInNewWindowWhenClickingInStatusBar": true,
// Misc settings
"editor.snippetSuggestions": "top",
"editor.accessibilitySupport": "off",
"editor.suggestSelection": "first",
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"editor.multiCursorModifier": "ctrlCmd",
"window.zoomLevel": 0
}