Skip to content

Instantly share code, notes, and snippets.

@liberium
Created March 13, 2017 07:35
Show Gist options
  • Save liberium/736f09b2cae52f76827c78cb14937800 to your computer and use it in GitHub Desktop.
Save liberium/736f09b2cae52f76827c78cb14937800 to your computer and use it in GitHub Desktop.
Using Fira Code for operators only in Atom
atom-workspace {
font-family: "Helvetica Neue";
}
atom-panel.tool-panel {
// font-size: 0.95em;
}
atom-text-editor.editor {
font-size: 16px;
font-weight: normal;
line-height: 1.7;
.syntax--entity.syntax--other.syntax--attribute-name.syntax--jsx,
.syntax--storage.syntax--type.syntax--function.syntax--js,
.syntax--storage.syntax--type.syntax--class.syntax--js {
font-style: italic !important;
}
.syntax--keyword.syntax--operator,
.syntax--storage.syntax--type.syntax--function.syntax--arrow.syntax--js {
font-family: 'Fira Code';
font-style: normal !important;
text-rendering: optimizeLegibility;
}
}
atom-text-editor .cursor-line .syntax--keyword.syntax--operator {
text-rendering: auto;
}
@liberium
Copy link
Author

Previes

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