Skip to content

Instantly share code, notes, and snippets.

@superhighfives
Last active May 25, 2017 10:17
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 superhighfives/e19004953ce07790c1e5f43271a48d21 to your computer and use it in GitHub Desktop.
Save superhighfives/e19004953ce07790c1e5f43271a48d21 to your computer and use it in GitHub Desktop.
Operator Mono with Fira Code ligatures in Atom
/*
* Your Stylesheet
*
* This stylesheet is loaded when Atom starts up and is reloaded automatically
* when it is changed and saved.
*
* Add your own CSS or Less to fully customize Atom.
* If you are unfamiliar with Less, you can read more about it here:
* http://lesscss.org
*/
atom-workspace,
atom-text-editor {
font-family: "Operator Mono SSm";
font-weight: 400;
line-height: 1.7;
}
atom-text-editor.editor {
.syntax--storage.syntax--type.syntax--function.syntax--arrow,
.syntax--keyword.syntax--operator:not(.accessor),
.syntax--punctuation.syntax--definition {
font-family: "Fira Code";
}
.syntax--string.syntax--quoted,
.syntax--string.syntax--regexp {
-webkit-font-feature-settings: "liga" off, "calt" off;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment