Skip to content

Instantly share code, notes, and snippets.

View ZoranJambor's full-sized avatar

Zoran Jambor ZoranJambor

View GitHub Profile
@ZoranJambor
ZoranJambor / settings.json
Created March 6, 2024 22:57
My Current VS Code Settings
{
"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,
@ZoranJambor
ZoranJambor / History|-109cc2c3|entries.json
Last active June 13, 2023 22:38
Visual Studio Code Configuration
{"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}]}
@ZoranJambor
ZoranJambor / .gitconfig
Created May 25, 2016 09:38
Git Aliases
[alias]
# Restores a file removed from a repository
restore = !git checkout $(git rev-list -n 1 HEAD -- \"$1\")^ -- \"$1\"
@ZoranJambor
ZoranJambor / html5.sublime-snippet
Last active December 29, 2015 05:29
Sublime Text Snippets
<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">
@ZoranJambor
ZoranJambor / uri.js
Last active September 28, 2016 13:46 — forked from jlong/uri.js
URI Parsing with Javascript
/**
* Parse URL
*
* @param {String} url
* @return {Object}
*/
parseURL = function(url) {
var el = document.createElement("a");
el.href = url || document.location.href;
@ZoranJambor
ZoranJambor / Preferences.sublime-settings
Created September 22, 2012 18:34
Sublime text settings
{
//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,