Skip to content

Instantly share code, notes, and snippets.

@apavamontri
Created July 16, 2019 12:08
Show Gist options
  • Save apavamontri/f1c3a9deec696534e79fb55081c6d9f0 to your computer and use it in GitHub Desktop.
Save apavamontri/f1c3a9deec696534e79fb55081c6d9f0 to your computer and use it in GitHub Desktop.
vscode setting
{
"bracketPairColorizer.showBracketsInGutter": true,
"bracketPairColorizer.showHorizontalScopeLine": true,
"bracketPairColorizer.showVerticalScopeLine": true,
"breadcrumbs.enabled": true,
"editor.formatOnSave": true,
"editor.fontFamily": "'Fira Code','Roboto Mono'",
"editor.fontLigatures": true,
"editor.fontSize": 16,
"editor.lineNumbers": "relative",
"editor.minimap.enabled": true,
"editor.minimap.renderCharacters": false,
"editor.renderIndentGuides": true,
"editor.renderLineHighlight": "all",
"editor.renderWhitespace": "none",
"editor.rulers": [
80
],
"editor.tabSize": 2,
"explorer.confirmDragAndDrop": false,
"explorer.openEditors.visible": 0,
"files.hotExit": "off",
"files.insertFinalNewline": true,
"go.formatTool": "goimports",
"sync.askGistName": false,
"sync.autoDownload": false,
"sync.autoUpload": false,
"sync.forceDownload": false,
"sync.gist": "254043da0d52b867266bb24ce014d44c",
"sync.removeExtensions": true,
"sync.syncExtensions": true,
"terminal.integrated.fontFamily": "'Hack Nerd Font'",
"terminal.integrated.shell.windows": "C:\\Program Files\\Git\\bin\\bash.exe",
"vim.easymotion": true,
"vim.easymotionMarkerFontFamily": "'Fira Code'",
"vim.easymotionMarkerFontSize": "12",
"vim.easymotionMarkerHeight": 20,
"vim.easymotionMarkerYOffset": -10,
"vim.insertModeKeyBindings": [{
"before": [
"j",
"j"
],
"after": [
"<Esc>"
]
}],
"vim.normalModeKeyBindingsNonRecursive": [{
"after": [
"leader",
"leader",
"leader",
"b",
"d",
"w"
],
"before": [
" "
]
},
{
"after": [],
"before": [
"Z",
"Z"
],
"commands": [{
"args": [],
"command": "workbench.action.files.save"
}]
}
],
"window.restoreWindows": "none",
"workbench.colorCustomizations": {
"editorIndentGuide.activeBackground": "#999999"
},
"dart.flutterSdkPath": "/Users/apavamontri/flutter",
"workbench.colorTheme": "One Dark Pro",
"workbench.iconTheme": "material-icon-theme",
"terminal.external.osxExec": "iTerm.app",
"terminal.integrated.shell.linux": "/usr/local/bin/zsh",
"terminal.integrated.shell.osx": "/usr/local/bin/zsh",
// "vim.enableNeovim": true,
// "vim.neovimPath": "/usr/local/bin/nvim",
"workbench.startupEditor": "newUntitledFile",
"emmet.triggerExpansionOnTab": true,
"emmet.showSuggestionsAsSnippets": true,
"editor.quickSuggestions": true,
"editor.snippetSuggestions": "top",
"editor.tabCompletion": "on",
"editor.suggestSelection": "first",
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"debug.console.fontFamily": "'Fira Code'",
"debug.console.fontSize": 14,
"terminal.integrated.fontSize": 14,
"java.configuration.checkProjectSettingsExclusions": false,
"[java]": {
"editor.tabSize": 4,
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment