Skip to content

Instantly share code, notes, and snippets.

@anthonybrown
Last active May 26, 2018 11:50
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 anthonybrown/04a3aa32a88bc8bad11c0424e0dce2de to your computer and use it in GitHub Desktop.
Save anthonybrown/04a3aa32a88bc8bad11c0424e0dce2de to your computer and use it in GitHub Desktop.
my vscode setup for OceanicNext
/* Ligatures */
.mtk16,
.mtk26,
.mtk36,
.mtk39 {
font-family: "Fira Code";
font-weight: 900;
}
/* Keywords, decorators, comments */
.mtk5,
.mtk8,
.mtk13,
.mtk15,
.mtk34,
.mtki {
font-family: "Operator Mono";
font-style: italic;
font-weight: 900;
font-size: 1.1em;
}
.mtk1,
.mtk3,
.mtk6,
.mtk7,
.mtk9,
.mtk11,
.mtk13,
.mtk15,
.mtk17,
.mtk20,
.mtk43 {
font-weight: 900;
}
{
"editor.minimap.enabled": false,
"editor.fontFamily": "Operator Mono,'Fira Code'",
"editor.fontLigatures": true,
"editor.fontSize": 18,
"editor.lineHeight": 24,
"workbench.editor.swipeToNavigate": true,
"workbench.fontAliasing": "antialiased",
"telemetry.enableTelemetry": false,
"gitlens.advanced.messages": {
"suppressCommitHasNoPreviousCommitWarning": false,
"suppressCommitNotFoundWarning": false,
"suppressFileNotUnderSourceControlWarning": false,
"suppressGitVersionWarning": false,
"suppressLineUncommittedWarning": false,
"suppressNoRepositoryWarning": false,
"suppressResultsExplorerNotice": false,
"suppressShowKeyBindingsNotice": true
},
"workbench.colorTheme": "Oceanic Next",
"editor.tabSize": 2,
"editor.renderWhitespace": "all",
"eslint.autoFixOnSave": true,
"editor.multiCursorModifier": "ctrlCmd",
"editor.formatOnPaste": true,
"prettier.singleQuote": true,
"editor.formatOnSave": true,
"workbench.colorCustomizations": {
"tab.activeBorder": "#00E5E5",
"list.inactiveSelectionForeground": "#00E5E5",
"list.activeSelectionBackground": "#00a6a9"
},
"vscode_custom_css.imports": [
"file:///Users/tony/.vscode/style.css"
],
"workbench.iconTheme": "eq-material-theme-icons",
"workbench.startupEditor": "newUntitledFile",
}
@anthonybrown
Copy link
Author

You can personalize your .css file to suit your needs. I like the italics of the Operator Mono font and the ligatures of Fira Code.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment