View cloudSettings
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
{"lastUpload":"2022-10-31T15:31:09.330Z","extensionVersion":"v3.4.3"} |
View Default%20%28Linux%29.sublime-keymap
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
Show hidden characters
[ | |
{ "keys": ["ctrl+up"], "command": "swap_line_up" }, | |
{ "keys": ["ctrl+down"], "command": "swap_line_down" }, | |
{ "keys": ["shift+tab"], "command": "unindent" }, | |
{ | |
"keys": ["ctrl+1"], | |
"command": "set_layout", | |
"args": | |
{ | |
"cols": [0.0, 1.0], |
View init.coffee
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
# initialization file (not found) |
View inline_svg_helpers.rb
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
# Inline svg from @tomeara https://gist.github.com/tomeara/6515860 | |
def inline_svg(path) | |
file = File.open("app/assets/images/#{path}", "rb") | |
raw file.read | |
end | |
# Use SVG internal link | |
def use_svg(clazz) | |
content_tag(:svg, content_tag(:use, "", { "xlink:href" => '#icon-' + clazz }), class: "icon icon-#{clazz}") | |
end |
View userContent.css
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
@-moz-document domain(my.1password.com) { | |
.vault-view #vault-content #search, | |
.vault-view #vault-content #item-list, | |
.vault-view #vault-content #item-list-info-box, | |
.vault-view #vault-content #watchtower-dashboard { | |
width: 550px !important; | |
} | |
.vault-view #vault-content #item-details, | |
.vault-view #vault-content #item-details section.toolbar, | |
.toolbar--toolbar_ZG8Vl { |
View stylebot.json
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
{ | |
"*": { | |
"_enabled": false, | |
"_rules": {} | |
}, | |
"austinkleon.com": { | |
"_enabled": true, | |
"_rules": { | |
"body": { | |
"font-size": "1em" |
View utilities-display.scss
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
// Display | |
.d-flex { | |
display: flex !important; | |
} | |
.flex-column { | |
flex-direction: column !important; | |
} | |
.justify-content-start { |
View ie-edge-targets.scss
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
@supports (-ms-ime-align: auto) { | |
// Target Edge | |
} | |
@media all and (-ms-high-contrast: none) { | |
// Target IE11 | |
} |
View syntax-highlighting.scss
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
.highlight, .highlighter-rouge { | |
background-color: #F7F8FA; | |
color: #5A6575; | |
border: none; | |
} | |
.highlight .lineno { | |
color: #B1B8C4 | |
} |
View sources.list
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
# deb cdrom:[Ubuntu 18.04 LTS _Bionic Beaver_ - Release amd64 (20180425)]/ bionic main restricted | |
# See http://help.ubuntu.com/community/UpgradeNotes for how to upgrade to | |
# newer versions of the distribution. | |
deb http://us.archive.ubuntu.com/ubuntu/ bionic main restricted | |
# deb-src http://us.archive.ubuntu.com/ubuntu/ bionic main restricted | |
## Major bug fix updates produced after the final release of the | |
## distribution. | |
deb http://us.archive.ubuntu.com/ubuntu/ bionic-updates main restricted |
NewerOlder