Skip to content

Instantly share code, notes, and snippets.

@RafalFilipek
Last active September 7, 2016 16:28
Show Gist options
  • Save RafalFilipek/9418226 to your computer and use it in GitHub Desktop.
Save RafalFilipek/9418226 to your computer and use it in GitHub Desktop.
Atom.io ivisibles done right
# Open your stylesheet (styles.less) and add
.editor {
.invisible-character:not(.leading-whitespace):not(.hard-tab) {
visibility: hidden;
}
}
@seanrand
Copy link

Just for reference, the same can be achieved using Atom's config.cson:

"*":
# [...]
  editor:
    invisibles: {
      cr: false
      eol: false
    }
# [...]

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