This file contains hidden or 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
{ | |
"gitlens.codeLens.enabled": false, | |
"gitlens.currentLine.enabled": false, | |
"gitlens.hovers.currentLine.over": "line", | |
"workbench.startupEditor": "newUntitledFile", | |
"editor.fontSize": 16, | |
"editor.lineHeight": 34, | |
"editor.fontFamily": "'Monaspace Neon', 'JetBrains Mono', 'Fira Code', 'Iosevka', 'Cascadia Code', Menlo, Monaco, 'Courier New', monospace", | |
"editor.fontLigatures": true, | |
"html.format.maxPreserveNewLines": 1, |
This file contains hidden or 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
{"version":1,"resource":"file:///Users/zoranjambor/Code/beehiiv-email-template/from-our-sponsor-brilliant.html","entries":[{"id":"WDoH.html","timestamp":1683209953576},{"id":"NRyg.html","timestamp":1685578721538},{"id":"kFhg.html","source":"undoRedo.source","timestamp":1685578726921}]} |
This file contains hidden or 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
[alias] | |
# Restores a file removed from a repository | |
restore = !git checkout $(git rev-list -n 1 HEAD -- \"$1\")^ -- \"$1\" |
This file contains hidden or 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
<snippet> | |
<content><![CDATA[ | |
<!DOCTYPE html> | |
<html class="no-js"> | |
<head> | |
<meta charset="utf-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<title>${1:Test Title}</title> | |
<meta name="description" content=""> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> |
This file contains hidden or 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
/** | |
* Parse URL | |
* | |
* @param {String} url | |
* @return {Object} | |
*/ | |
parseURL = function(url) { | |
var el = document.createElement("a"); | |
el.href = url || document.location.href; |
This file contains hidden or 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
{ | |
//Basic settings | |
"bold_folder_labels": true, | |
"draw_minimap_border": true, | |
"draw_white_space": "all", | |
"highlight_line": true, | |
"line_padding_bottom": 1, | |
"line_padding_top": 1, | |
"scroll_past_end": true, | |
"shift_tab_unindent": true, |