Skip to content

Instantly share code, notes, and snippets.

@td0
Last active August 30, 2018 22:13
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 5 You must be signed in to fork a gist
  • Save td0/3fc9c208b40a3a96b014c2d988084714 to your computer and use it in GitHub Desktop.
Save td0/3fc9c208b40a3a96b014c2d988084714 to your computer and use it in GitHub Desktop.
vscode-styles for operator mono, fira code ligatures, and oceanic next italic
// Place your settngs in this file to overwrite the default settings
// test line
{
// Editor
"editor.tabSize": 2,
"editor.wordWrap": "on",
"editor.wrappingIndent": "indent",
"editor.fontFamily": "fira code",
"editor.fontWeight": "100",
"editor.fontSize": 13,
"editor.fontLigatures": true,
"editor.minimap.enabled": false,
"editor.renderIndentGuides": false,
// Files
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/.DS_Store": true,
"node_modules": true
},
"files.associations": { },
// Windows
"window.openFilesInNewWindow": "default",
// Terminal Stuffs
"terminal.external.osxExec": "iTerm.app",
"terminal.integrated.fontFamily": "Noto Mono for Powerline",
"terminal.integrated.cursorBlinking": true,
"terminal.integrated.lineHeight": 1,
// EXTENSIONS
// Custom css loader
"vscode_custom_css.imports" : [ "file:///Users/tdh/Dev/vscodeExt/customCSS/materialTheme.css" ],
// Color highlight
"color-highlight.markerType": "background",
// Git Project
"gitProjectManager.baseProjectsFolders": [
"/Users/tdh/dev/"
],
"gitProjectManager.storeRepositoriesBetweenSessions": true,
"gitProjectManager.ignoredFolders": [
"gocode"
],
"gitProjectManager.warnIfFolderNotFound": true,
"window.zoomLevel": 0,
"workbench.activityBar.visible": true,
"workbench.statusBar.visible": true,
"workbench.colorTheme": "One Dark Pro",
"workbench.iconTheme": "material-icon-theme",
"materialTheme.cache.workbench.settings": {
"themeColours": "Darker"
},
"node-module-intellisense.modulePaths": ["~/.nvm/versions/node/v6.11.4/lib/node_modules/"]
// Vim
// "vim.disableAnnoyingNeovimMessage": false,
// "vim.useSystemClipboard": true,
// "vim.easymotion": true,
// "vim.leader": "<space>",
// "vim.insertModeKeyBindingsNonRecursive": [
// {
// "before": ["j","k"],
// "after": ["<Esc>"]
// }
// ],
// "vim.otherModesKeyBindingsNonRecursive": [
// {
// "before": ["j"],
// "after": ["g","j"]
// },{
// "before": ["k"],
// "after": ["g","k"]
// },{
// "before": [";"],
// "after": [":"]
// },{
// "before": ["<leader>","d"],
// "after": ["\"","_","d"]
// },{
// "before": ["leader", "w"],
// "after": [],
// "commands": [
// {
// "command": "workbench.action.files.save",
// "args": []
// }
// ]
// },{
// "before": ["<C-j>"],
// "after": [],
// "commands": [
// {
// "command": "editor.action.moveLinesDownAction",
// "args": []
// }
// ]
// },{
// "before": ["<C-k>"],
// "after": [],
// "commands": [
// {
// "command": "editor.action.moveLinesUpAction",
// "args": []
// }
// ]
// }
// ]
}
div.window-title, div.panel-header div.title, a.editor-status-mode,
div.results-group, span.quick-open-entry-description>span.monaco-highlighted-label:first-child,
.input, div.column.when span,
.Equinusocio-vsc-material-theme-themes-Material-Theme-Palenight-json .mtk12,
.Equinusocio-vsc-material-theme-themes-Material-Theme-Palenight-json .mtk9,
.Equinusocio-vsc-material-theme-themes-Material-Theme-Palenight-json .mtk4,
.Equinusocio-vsc-material-theme-themes-Material-Theme-Palenight-json .mtk3.mtki.detected-link,
.Equinusocio-vsc-material-theme-themes-Material-Theme-Palenight-json span.mtk11.mtki,
.Tyriar-theme-sapphire-theme-bright-json .mtk6,
.zhuangtongfa-Material-theme-themes-OneDark-Pro-json .mtk6,
.zhuangtongfa-Material-theme-themes-OneDark-Pro-json .mtk3.mtki,
.zhuangtongfa-Material-theme-themes-OneDark-Pro-json .mtk9,
.zhuangtongfa-Material-theme-themes-OneDark-Pro-json .mtk29 {
font-style : italic;
font-family : 'Operator Mono';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment