-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.json
180 lines (157 loc) · 5.89 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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
{
// Themeing and look (iconTheme and colorTheme are extensions)
"workbench.iconTheme": "material-icon-theme",
// https://marketplace.visualstudio.com/items?itemName=PKief.material-icon-theme
"workbench.colorTheme": "Night Owl",
// https://marketplace.visualstudio.com/items?itemName=sdras.night-owl
"workbench.statusBar.visible": true,
"workbench.activityBar.visible": true,
"workbench.editor.tabSizing": "shrink",
"workbench.editor.enablePreview": true,
"workbench.colorCustomizations": {
"statusBar.background": "#1A1A1A",
"statusBar.noFolderBackground": "#212121",
"statusBar.debuggingBackground": "#263238"
},
// open settings as json file not wysiwyg
"workbench.settings.editor": "json",
// Editor
"editor.fontFamily": "Dank Mono, Menlo, Monaco, 'Courier New', monospace",
// https://dank.sh/ font (paid) or similar free https://github.com/tonsky/FiraCode
"editor.fontLigatures": true, // font ligatures are the BOMB
"editor.cursorStyle": "line",
"editor.wordWrap": "on",
"editor.multiCursorModifier": "ctrlCmd",
"editor.fontWeight": "400",
"editor.cursorBlinking": "solid",
"editor.colorDecorators": true,
"editor.showFoldingControls": "always",
"editor.find.seedSearchStringFromSelection": true,
"editor.matchBrackets": true,
"editor.minimap.enabled": false,
// show snippets before any other auto completion
"editor.snippetSuggestions": "top",
"editor.fontSize": 18,
"editor.lineHeight": 29,
"editor.parameterHints.enabled": true,
"editor.scrollBeyondLastLine": true,
"editor.useTabStops": true,
"editor.formatOnPaste": false,
"editor.quickSuggestionsDelay": 30,
"editor.letterSpacing": 0.5,
"editor.tabSize": 2,
"editor.cursorWidth": 5,
"editor.renderWhitespace": "none",
"editor.rulers": [80, 100],
"editor.detectIndentation": true,
"editor.autoIndent": true,
"editor.formatOnSave": true,
"editor.suggestSelection": "first",
// Explorer
"explorer.openEditors.visible": 0,
"explorer.confirmDelete": false,
"explorer.confirmDragAndDrop": false,
// Window - prevent blurry text on secondary monitor
"window.zoomLevel": 0,
"window.title": "${dirty} ${activeEditorMedium}${separator}${rootName}",
"window.closeWhenEmpty": true,
"window.openFilesInNewWindow": "off",
// Files
"files.insertFinalNewline": true,
"files.trimTrailingWhitespace": true,
"files.trimFinalNewlines": true,
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/.next": true
},
// Terminal
"terminal.integrated.shell.osx": "/usr/local/bin/zsh",
// https://ohmyz.sh/
// my zsh config: https://github.com/lisaross/dotfiles/blob/master/.zshrc
"terminal.external.osxExec": "iTerm.app",
"terminal.integrated.fontFamily": "Dank Mono, Menlo, Monaco, 'Courier New', monospace",
"terminal.integrated.fontSize": 18,
"terminal.integrated.lineHeight": 1.4,
"terminal.integrated.fontWeightBold": "bold",
"extensions.ignoreRecommendations": true,
"breadcrumbs.enabled": true,
"html.format.enable": true,
"html.format.preserveNewLines": true,
"emmet.includeLanguages": {
"javascript": "javascriptreact"
},
// use plugins to validate
"css.validate": false,
"less.validate": false,
"scss.validate": false,
"php.validate.enable": false,
"php.validate.executablePath": "/usr/local/bin/php",
"git.autofetch": true,
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
// PLUGIN RELATED =================================
// List of installed extensions: https://github.com/lisaross/dotfiles/blob/master/vscode-installed.md
// PHP linting
"phpcs.standard": "PSR2",
"phpcbf.onsave": true,
"phpcbf.standard": "PSR2",
// gitlens
"gitlens.advanced.messages": {
"suppressShowKeyBindingsNotice": true
},
// tell the ESLint plugin to run on save
"eslint.autoFixOnSave": true,
"eslint.alwaysShowStatus": true,
// personal gist saves settings to cloud
"sync.gist": "f3a2a1ee4f60b8bbde201cff19feb9c8",
"yaml.schemas": {
"file:///Users/dev/.vscode-insiders/extensions/atlassian.atlascode-1.4.0/resources/schemas/pipelines-schema.json": "bitbucket-pipelines.yml"
},
// Live Share Settings
"liveshare.featureSet": "insiders", // new features released early
"liveshare.audio.startCallOnShare": true,
// Atlassian Settings
"atlascode.jira.workingSite": {
"baseUrlSuffix": "atlassian.net"
},
"atlascode.jira.statusbar.showProject": true,
"atlascode.jira.todoIssues.triggers": ["TODO:", "BUG:", "FIXME:", "ISSUE:"],
"atlascode.jira.workingProject": {
"id": "10000",
"name": "Pocket Career Coach Web",
"key": "PCC"
},
"atlascode.jira.customJql": [
{
"jql": [
{
"enabled": true,
"id": "78549ed0-d184-4109-a702-6991efb6a43d",
"name": "Current Release Only",
"query": "project = PCC AND fixVersion = earliestUnreleasedVersion() AND sprint in openSprints() and assignee = currentUser() and status in (\"In Progress\", QA, \"To Do\") ORDER BY rank ASC"
},
{
"enabled": true,
"id": "",
"name": "Current Sprint Only",
"query": "project = PCC AND sprint in openSprints() and assignee = currentUser() and status in (\"To Do\", Open, \"In Progress\") ORDER BY fixVersion ASC"
}
],
"siteId": "df58a239-9b72-490c-bfbc-761e784c43a8"
}
],
"atlascode.bitbucket.pipelines.explorerEnabled": false,
"atlascode.bitbucket.issues.explorerEnabled": false,
"atlascode.jira.statusbar.showUser": false,
"atlascode.bitbucket.statusbar.showUser": false,
"atlascode.jira.explorer.showAssignedIssues": false,
"atlascode.jira.explorer.showOpenIssues": false,
// NPM intellisense settings
"npm-intellisense.importES6": false,
"npm-intellisense.importQuotes": "'",
"npm-intellisense.importLinebreak": ";\r\n",
"npm-intellisense.importDeclarationType": "const"
}