all repos

dotfiles @ c1cc0c9ebe9484bf94fa96618ae24fbeda964d58

my dotfiles

vscode/settings.json (view raw)

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
{
  "update.showReleaseNotes": false,
  "window.menuBarVisibility": "hidden",
  "workbench.iconTheme": "material-icon-theme",

  "workbench.sideBar.location": "right",
  "workbench.editor.untitled.hint": "hidden",
  "workbench.startupEditor": "none",

  "explorer.compactFolders": false,
  "explorer.confirmDragAndDrop": false,
  "explorer.confirmDelete": false,

  // "editor.cursorSmoothCaretAnimation": true,
  "editor.fontFamily": "'Jetbrains Mono', monospace",
  "editor.hover.enabled": false,
  // "editor.lightbulb.enabled""cSpell.userWords": ["postgres"]: false,
  "editor.minimap.enabled": false,
  "editor.smoothScrolling": true,
  "editor.mouseWheelZoom": true,
  "editor.formatOnPaste": false,
  "editor.formatOnSave": true,
  "editor.tabCompletion": "on",
  "editor.wordWrap": "off",
  "editor.fontSize": 14,
  "editor.tabSize": 4,

  "files.insertFinalNewline": true,
  "files.trimFinalNewlines": true,
  "files.trimTrailingWhitespace": true,
  "search.quickOpen.includeHistory": false,

  "gitlens.codeLens.enabled": true,
  "git.autofetch": true,
  "git.confirmSync": false,
  "git.enableSmartCommit": true,

  "cSpell.userWords": ["postgres"],
  "extensions.ignoreRecommendations": true,
  "docker.showStartPage": false,
  "prettier.semi": false,
  "javascript.suggestionActions.enabled": false,
  "typescript.suggestionActions.enabled": false,

  "files.exclude": {
    "**/.cache": true,
    "**/node_modules": true
  },

  "vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",

  "[javascript]": {
    "editor.defaultFormatter": "esbenp.prettier-vscode",
    "editor.tabSize": 2
  },
  "editor.suggestSelection": "first",
  "cSpell.enabled": false
}