-
-
Save nshtg/8ae30bf94302457bc800 to your computer and use it in GitHub Desktop.
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
'editor': | |
'lineHeight': 1.45 | |
'softWrap': true | |
'normalizeIndentOnPaste': true | |
'tabLength': 2 | |
'preferredLineLength': 100 | |
'invisibles': | |
'cr': '↩' | |
'eol': '' | |
'space': '·' | |
'tab': '⇥' | |
'showInvisibles': true | |
'core': | |
'themes': [ | |
'atom-dark-ui' | |
'blackboard' | |
] | |
'welcome': | |
'showOnStartup': false | |
'whitespace': | |
'removeTrailingWhitespace': true | |
'ensureSingleTrailingNewline': true |
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
/* | |
* @viljamis’ Atom stylesheet | |
* | |
* This stylesheet is loaded when Atom starts up and | |
* is reloaded automatically when it is changed. | |
*/ | |
/* CODE EDITOR | |
------------------ */ | |
.editor { | |
font-family: 'Input Mono'; | |
font-weight: 400; | |
font-size: 16; | |
.invisible-character { | |
color: #282c48; | |
} | |
.cursor { | |
border-color: #ffbc91 !important; | |
border-width: 2px; | |
} | |
} | |
/* TOP TABS | |
------------------ */ | |
.tab { | |
font-family: 'Input Sans'; | |
font-size: 11px !important; | |
letter-spacing: -0.3px; | |
} | |
/* SIDEBAR | |
------------------- */ | |
.tree-view { | |
font-family: 'Input Sans'; | |
letter-spacing: -0.3px; | |
font-size: 13px; | |
background: #2e2f35 !important; | |
.entry.directory.status-modified > .header, | |
.entry.file.status-modified { | |
color: #ff6300; | |
} | |
.list-item { | |
line-height: 1.8 !important; | |
} | |
.icon:before { | |
font-size: 14px; | |
opacity: .7; | |
top: 0; | |
} | |
.header:before { | |
opacity: .7; | |
margin-right: 0 !important; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment