Last active
January 19, 2018 13:00
-
-
Save MethodGrab/14c88de14a4510be8cd186bee626e6b2 to your computer and use it in GitHub Desktop.
Atom styles to disable ligatures on the active line
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Disable ligatures on the active line | |
// https://developer.mozilla.org/en-US/docs/Web/CSS/font-variant-ligatures | |
atom-text-editor.editor { | |
.line.cursor-line { | |
font-variant-ligatures: none; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment