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
pre.code { background: #181818; padding: 16px; color: #F8F8F8; font-family: Consolas, Monaco,"Lucida Console"; } | |
pre.code * { font-family: Consolas, Monaco,"Lucida Console"; } | |
pre.code .hll { background-color: #ffffcc } | |
pre.code .c { color: #5F5A60; font-style: italic } /* Comment */ | |
pre.code .err { border:#B22518; } /* Error */ | |
pre.code .k { color: #CDA869 } /* Keyword */ | |
pre.code .cm { color: #5F5A60; font-style: italic } /* Comment.Multiline */ | |
pre.code .cp { color: #5F5A60 } /* Comment.Preproc */ | |
pre.code .c1 { color: #5F5A60; font-style: italic } /* Comment.Single */ | |
pre.code .cs { color: #5F5A60; font-style: italic } /* Comment.Special */ |
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
# Originally from https://github.com/mathiasbynens/dotfiles/blob/master/.osx | |
# Enable the 2D Dock | |
defaults write com.apple.dock no-glass -bool true | |
# Disable menu bar transparency | |
defaults write -g AppleEnableMenuBarTransparency -bool false | |
# Expand save panel by default | |
defaults write -g NSNavPanelExpandedStateForSaveMode -bool true |