Skip to content

Instantly share code, notes, and snippets.

@mikowl
Created April 23, 2019 02:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mikowl/753b582efe29344daefb15f32298ea25 to your computer and use it in GitHub Desktop.
Save mikowl/753b582efe29344daefb15f32298ea25 to your computer and use it in GitHub Desktop.
My VSCode settings.json
{
"breadcrumbs.enabled": false,
// Editor font
"editor.fontFamily": "'Operator Mono Lig', 'Dank Mono', Monaco, 'Courier New', monospace",
"editor.fontSize": 16,
"editor.renderWhitespace": "boundary",
"editor.fontLigatures": true,
"editor.cursorBlinking": "solid",
"editor.multiCursorModifier": "ctrlCmd",
"editor.formatOnPaste": true,
"editor.cursorWidth": 2,
"editor.cursorStyle": "block",
"editor.fontWeight": "300",
"files.exclude": {
".sass-cache": true
},
// Gitlens
"gitlens.codeLens.recentChange.enabled": true,
"gitlens.codeLens.authors.enabled": true,
"gitlens.currentLine.enabled": false,
"gitlens.heatmap.coldColor": "#2c94b1",
"gitlens.heatmap.hotColor": "#e38038",
"gitlens.heatmap.toggleMode": "window",
"gitlens.blame.heatmap.enabled": true,
"gitlens.blame.highlight.enabled": true,
"gitlens.recentChanges.toggleMode": "window",
// Highlight matching tag
"highlight-matching-tag.enabled": true,
"highlight-matching-tag.highlightFromContent": true,
"highlight-matching-tag.styles": {
"opening": {
"name": {
"underline": "yellow"
}
}
},
// Bracket Pair Colorizer
"bracketPairColorizer.forceUniqueOpeningColor": true,
"bracketPairColorizer.forceIterationColorCycle": false,
"bracketPairColorizer.colorMode": "Consecutive",
"bracketPairColorizer.showBracketsInGutter": true,
"bracketPairColorizer.showHorizontalScopeLine": false,
"bracketPairColorizer.consecutivePairColors": [
"()",
"[]",
"{}",
[
"#ffc13b",
"#c59aed",
"LightSkyBlue"
],
"Red"
],
"bracketPairColorizer.independentPairColors": [
[
"()",
[
"#ffc13b",
"#c59aed",
"LightSkyBlue"
],
"Red"
],
[
"[]",
[
"#ffc13b",
"#c59aed",
"LightSkyBlue"
],
"Red"
],
[
"{}",
[
"#ffc13b",
"#c59aed",
"LightSkyBlue"
],
"Red"
]
],
// Material icon theme
"material-icon-theme.opacity": 0.7,
"material-icon-theme.activeIconPack": "react",
"material-icon-theme.folders.theme": "specific",
"search.useIgnoreFiles": false,
// Terminal settings
"terminal.integrated.fontSize": 14,
"terminal.explorerKind": "external",
"terminal.integrated.drawBoldTextInBrightColors": false,
"terminal.integrated.fontFamily": "Hack, Source Code Pro for Powerline, Meslo LG S DZ for Powerline, Menlo for Powerline, Pomodoro, FontAwesome, Octicons, Icomoon",
"terminal.integrated.fontWeight": "400",
"terminal.integrated.fontWeightBold": "normal",
"window.newWindowDimensions": "maximized",
"workbench.colorCustomizations": {
"gitDecoration.modifiedResourceForeground": "#e4db97",
"statusBar.background": "#769E9F",
"statusBar.noFolderBackground": "#769E9F",
"statusBar.debuggingBackground": "#769E9F",
"statusBar.foreground": "#041E34"
},
"workbench.startupEditor": "none",
"workbench.statusBar.feedback.visible": false,
"workbench.iconTheme": "material-icon-theme",
"workbench.statusBar.visible": true,
"workbench.tree.indent": 14,
"workbench.colorTheme": "Dainty – Nord (with italics)",
// Vim settings
"vim.easymotion": true,
"vim.sneak": true,
"vim.incsearch": true,
"vim.showmodename": true,
"vim.showcmd": true,
"vim.useSystemClipboard": true,
"vim.useCtrlKeys": true,
"vim.hlsearch": true,
"vim.leader": ",",
"vim.insertModeKeyBindings": [
{
"before": [
"j",
"j"
],
"after": [
"<Esc>"
]
},
{
"before": [
"j",
"k"
],
"after": [
"<Esc>"
]
}
],
"vim.handleKeys": {
"<C-a>": false,
"<C-f>": false,
"<C-d>": false
},
"vim.cursorStylePerMode.insert": "line",
"vim.cursorStylePerMode.normal": "block",
"vim.cursorStylePerMode.replace": "underline",
"vim.cursorStylePerMode.visual": "block-outline",
"vim.cursorStylePerMode.visualblock": "block-outline",
"vim.cursorStylePerMode.visualline": "block-outline",
"vim.easymotionMarkerFontFamily": "Helvetica Neue",
"vim.easymotionMarkerFontSize": "15",
"vim.statusBarColorControl": true,
"vim.statusBarColors.normal": ["#769E9F", "#041E34"],
"vim.statusBarColors.insert": ["#769E78", "#041E34"],
"vim.statusBarColors.visual": ["#C69E9F", "#041E34"],
"vim.statusBarColors.visualline": ["#C69E9F", "#041E34"],
"vim.statusBarColors.visualblock": ["#C69E9F","#041E34"],
"vim.statusBarColors.replace": [
"#C65178",
"#041E34"
],
"material-icon-theme.hidesExplorerArrows": true,
"workbench.activityBar.visible": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment