-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvscode.user
More file actions
77 lines (67 loc) · 2.23 KB
/
vscode.user
File metadata and controls
77 lines (67 loc) · 2.23 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
// Place your settings in this file to overwrite the default settings
{
"editor.tabSize": 2,
"editor.tabCompletion": true,
"editor.fontSize": 12,
"editor.wordWrapColumn": 80,
"editor.wordWrap": "on",
"editor.detectIndentation": true,
"editor.stablePeek": true,
"editor.renderWhitespace": "all",
"editor.renderIndentGuides": true,
"editor.renderControlCharacters": true,
"editor.quickSuggestionsDelay": 1000,
"editor.cursorBlinking": "solid",
"editor.selectionHighlight": false,
"editor.wordSeparators": "`~!@#$%^&*()-=+[{]}\\|;:'\",.<>/?_",
"window.zoomLevel": -1,
"window.title": "${activeEditorMedium} –– 👻 –– ${rootName}",
"emmet.syntaxProfiles": {
"javascript": ["jsx", "md", "html"],
"html": "html"
},
"files.trimTrailingWhitespace": true,
"files.associations": {
"*.css": "postcss",
"*.jsx": "javascriptreact",
"vimrc": "viml"
},
"files.exclude": {
"**/.git": false,
"**/.svn": true,
"**/.hg": true,
"**/.DS_Store": true
},
"code-runner.clearPreviousOutput": true,
"editor.formatOnPaste": false,
"editor.snippetSuggestions": "top",
"editor.parameterHints": false,
"editor.minimap.enabled": false,
"vsicons.associations.files": [
{ "icon": "reactjs", "extensions": ["jsx"], "format": "svg" }
],
"explorer.confirmDragAndDrop": false,
"gitlens.advanced.messages": {
"suppressCommitHasNoPreviousCommitWarning": false,
"suppressCommitNotFoundWarning": false,
"suppressFileNotUnderSourceControlWarning": false,
"suppressGitVersionWarning": false,
"suppressLineUncommittedWarning": false,
"suppressNoRepositoryWarning": false,
"suppressResultsExplorerNotice": true,
"suppressShowKeyBindingsNotice": true,
"suppressUpdateNotice": false,
"suppressWelcomeNotice": true
},
"extensions.ignoreRecommendations": false,
"vim.useSystemClipboard": true,
"vim.statusBarColorControl": true,
"gitlens.keymap": "alternate",
"vsicons.dontShowNewVersionMessage": true,
"gitlens.historyExplorer.enabled": true,
"rewrap.autoWrap.enabled": true,
"javascript.updateImportsOnFileMove.enabled": "always",
"editor.gotoLocation.multiple": "goto",
"eslint.autoFixOnSave": true,
"vim.neovimPath": "/usr/local/bin/nvim"
}