Skip to content

Instantly share code, notes, and snippets.

@adrexia
Last active December 14, 2016 15:45
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save adrexia/10636418 to your computer and use it in GitHub Desktop.
Save adrexia/10636418 to your computer and use it in GitHub Desktop.
Atom - hide file icons and replace arrows
.tree-view {
.icon:before{
display:none;
}
&.list-tree.has-collapsable-children .list-nested-item {
> .list-item:before{
content: "\f05b";
}
&.collapsed > .list-item:before{
content: "\f05a";
}
> .list-tree > li {
padding-left: 10px;
}
}
}
@nabilfreeman
Copy link

you are a kind, gentle hero. thanks

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