Skip to content

Instantly share code, notes, and snippets.

@martinusadyh
Created November 22, 2019 11:45
Show Gist options
  • Save martinusadyh/34d811410fc274c8c08f6eb4c6df1eee to your computer and use it in GitHub Desktop.
Save martinusadyh/34d811410fc274c8c08f6eb4c6df1eee to your computer and use it in GitHub Desktop.
Konfigurasi VSCode
// Place your settings in this file to overwrite the default settings
{
"editor.fontSize" : 12
// Controls the line height. Use 0 to compute the lineHeight from the fontSize.
, "editor.lineHeight" : 0
// Controls the font family.
, "editor.fontFamily": "'MesloLGS NF', 'FiraCode-Retina', Menlo, Monaco, 'Courier New', monospace"
, "editor.fontLigatures": true
// Controls the font weight.
, "editor.fontWeight": "normal"
// Columns at which to show vertical rulers
, "editor.rulers" : [80]
// Controls whether the editor should render indent guides
, "editor.renderIndentGuides" : true
, "editor.renderWhitespace" : "all"
, "editor.minimap.enabled" : false
// Controls whether the fold controls on the gutter are automatically hidden.
, "editor.showFoldingControls": "always"
, "workbench.editor.enablePreview" : false
// Setting supaya ketika Ctrl+P langsung edit mode
, "workbench.editor.enablePreviewFromQuickOpen": false
, "workbench.statusBar.visible": true
, "workbench.startupEditor": "newUntitledFile", "window.title" : "${activeEditorLong}"
, "window.titleBarStyle": "native"
// Adjust the zoom level of the window. The original size is 0 and each
// increment above (e.g. 1) or below (e.g. -1) represents zooming 20% larger
// or smaller. You can also enter decimals to adjust the zoom level with a
// finer granularity.
, "window.zoomLevel": 0
, "extensions.ignoreRecommendations": true
, "typescript.check.npmIsInstalled" : false
, "workbench.colorCustomizations": {
"editorIndentGuide.activeBackground": "#000305"
, "terminal.background":"#FAFAFA"
, "terminal.foreground":"#383A42"
, "terminalCursor.background":"#383A42"
, "terminalCursor.foreground":"#383A42"
, "terminal.ansiBlack":"#FAFAFA"
, "terminal.ansiBlue":"#4078F2"
, "terminal.ansiBrightBlack":"#A0A1A7"
, "terminal.ansiBrightBlue":"#4078F2"
, "terminal.ansiBrightCyan":"#0184BC"
, "terminal.ansiBrightGreen":"#50A14F"
, "terminal.ansiBrightMagenta":"#A626A4"
, "terminal.ansiBrightRed":"#CA1243"
, "terminal.ansiBrightWhite":"#090A0B"
, "terminal.ansiBrightYellow":"#C18401"
, "terminal.ansiCyan":"#0184BC"
, "terminal.ansiGreen":"#50A14F"
, "terminal.ansiMagenta":"#A626A4"
, "terminal.ansiRed":"#CA1243"
, "terminal.ansiWhite":"#383A42"
, "terminal.ansiYellow":"#C18401"
}
, "search.exclude": {
"**/*.class": true
, "**/*.jar": true
}
, "files.exclude": {
"**/.classpath": true
, "**/.idea": true
, "**/.project": true
, "**/.settings": true
, "**/*.iml": true
, "**/.factorypath": true
}
, "workbench.activityBar.visible": true
, "window.nativeTabs": true
, "terminal.integrated.cursorStyle": "line"
, "workbench.colorTheme": "Espresso Soda"
, "breadcrumbs.enabled": false
, "editor.suggestSelection": "first"
, "vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue"
, "vsicons.dontShowNewVersionMessage": true
, "git.autorefresh": false
, "git.autoRepositoryDetection": false
, "git.confirmEmptyCommits": false
, "git.confirmSync": false
, "git.countBadge": "off"
, "git.decorations.enabled": false
, "git.detectSubmodules": false
, "git.enabled": false
, "git.enableStatusBarSync": false
, "git.openDiffOnClick": false
, "git.pullTags": false
, "git.showInlineOpenFileAction": false
, "git.showProgress": false
, "git.suggestSmartCommit": false
, "git.useForcePushWithLease": false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment