Skip to content

Instantly share code, notes, and snippets.

@soerson
soerson / openWithST3.bat
Created January 4, 2016 17:23
Add "Open with Sublime Text 3" to files/folders context menu
@echo off
SET st3Path=C:\Program Files\Sublime Text 3\sublime_text.exe
rem add it for all file types
@reg add "HKEY_CLASSES_ROOT\*\shell\Open with Sublime Text 3" /t REG_SZ /v "" /d "Open with Sublime Text 3" /f
@reg add "HKEY_CLASSES_ROOT\*\shell\Open with Sublime Text 3" /t REG_EXPAND_SZ /v "Icon" /d "%st3Path%,0" /f
@reg add "HKEY_CLASSES_ROOT\*\shell\Open with Sublime Text 3\command" /t REG_SZ /v "" /d "%st3Path% \"%%1\"" /f
rem add it for folders
@reg add "HKEY_CLASSES_ROOT\Folder\shell\Open with Sublime Text 3" /t REG_SZ /v "" /d "Open with Sublime Text 3" /f
@soerson
soerson / favicons.jade
Last active October 27, 2015 09:53
favicons.jade
// FAVICON
link(rel="shortcut icon" href="img/favicon/favicon.ico")
link(rel="apple-touch-icon-precomposed" sizes="57x57" href="img/favicon/apple-touch-icon-57x57.png")
link(rel="apple-touch-icon-precomposed" sizes="60x60" href="img/favicon/apple-touch-icon-60x60.png")
link(rel="apple-touch-icon-precomposed" sizes="72x72" href="img/favicon/apple-touch-icon-72x72.png")
link(rel="apple-touch-icon-precomposed" sizes="76x76" href="img/favicon/apple-touch-icon-76x76.png")
link(rel="apple-touch-icon-precomposed" sizes="114x114" href="img/favicon/apple-touch-icon-114x114.png")
link(rel="apple-touch-icon-precomposed" sizes="120x120" href="img/favicon/apple-touch-icon-120x120.png")
link(rel="apple-touch-icon-precomposed" sizes="144x144" href="img/favicon/apple-touch-icon-144x144.png")
link(rel="apple-touch-icon-precomposed" sizes="152x152" href="img/favicon/apple-touch-icon-152x152.png")
@soerson
soerson / Preferences.sublime-settings
Last active February 6, 2016 09:47
my sublime text 3 settings
{
"always_show_minimap_viewport": true,
"atomic_save": true,
"bold_folder_labels": true,
"color_scheme": "Packages/Theme - Glacier/glacier.tmTheme",
"font_size": 9,
"ignored_packages":
[
"CSS",
"Markdown",