Skip to content

Instantly share code, notes, and snippets.

{
"always_show_minimap_viewport": true,
"auto_indent": true,
"auto_match_enabled": true,
"bold_folder_labels": true,
"caret_style": "phase",
"color_scheme": "auto",
"font_face": "JetBrains Mono NL",
"font_size": 14,
"highlight_line": true,
tell application "Mail"
set _msgs to selection
set _mailbox to "@action"
repeat with _msg in _msgs
tell application "Mail"
move the _msg to mailbox _mailbox
end tell
end repeat
end tell
# PS1="\n\u:\w \n→ "
export PS1="\n\e[0;32m\u@\h:\e[m\e[0;34m\w\e[m \n→ "
export EDITOR=vim
# simple note taking tool
n() {
$EDITOR ~/Text/"$*".txt
}
nls() {
<div class="article">
{% if page.type == 'link' %}
<p><a href="{{ page.link }}">{{ page.title }}</a></p>
{{ content }}
<p>This item was posted on {{ page.date | date: "%B %e, %Y "}} </p>
{% else %}
<h1> {{page.title}} </h1>
<p>{{ page.date | date: "%B %e, %Y "}}</p>
{{ content }}
{% endif %}
<entry>
<title>{{ post.title }}</title>
{% if post.type != 'link' %}
<link href="http://kevrodg.net{{ post.url }}"/>
{% else %}
<link href="{{ post.link }}"/>
{% endif %}
<updated>{{ post.date | date_to_xmlschema }}</updated>
<id>http://kevrodg.net{{ post.id }}</id>
<content type="html"><![CDATA[{{ post.content }}