Last active
August 27, 2016 13:19
-
-
Save tfausak/7575715f329552918c657316f04dfffa to your computer and use it in GitHub Desktop.
Make Haskell module specifiers less important in Atom. https://twitter.com/taylorfausak/status/769312949353652228
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
// the reasonable option | |
::shadow .haskell .entity .module, | |
::shadow .haskell .identifier .module { | |
opacity: 0.5; | |
} | |
// the nuclear option | |
::shadow .line:not(.cursor-line) .haskell .entity .module, | |
::shadow .line:not(.cursor-line) .haskell .identifier .module { | |
display: none; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment