You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
624 B
Plaintext

/*
* 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
*/
// enable Fira Code with ligatures
atom-text-editor {
font-family: fira code;
text-rendering: optimizeLegibility;
}
// disable ligatures in quoted strings
atom-text-editor.editor .syntax--string.syntax--quoted,
atom-text-editor.editor .syntax--string.syntax--regexp {
-webkit-font-feature-settings: "liga" off, "calt" off;
}