Add to: Cmd+Shift+P > "Snippets: Configure User Snippets" > global-snippets.code-snippets
01/26/2026
Add to: Cmd+Shift+P > "Snippets: Configure User Snippets" > global-snippets.code-snippets
01/26/2026
A list of GitHub emoji markup, adapted from rxavier’s Complete list of github markdown emoji markup, generated with a Grunt script for maintainability (see repository).
Smileys and People
Animals and Nature
Food and Drink
Activity
Travel and Places
Objects
| # launch daily notes with `notes` | |
| # launch specific notes with `notes woodworking` | |
| # this is a cloud synced file, so it's live on all my devices | |
| function notes(){ | |
| SUBJECT="${1:=daily}" | |
| if [ -z "$SUBJECT" ] | |
| then | |
| (cd ~/Documents/notes && hx NOTES.md) | |
| else | |
| (cd ~/Documents/notes && hx "${SUBJECT:u}.md" NOTES.md) |
| " plugins | |
| let need_to_install_plugins = 0 | |
| if empty(glob('~/.vim/autoload/plug.vim')) | |
| silent !curl -fLo ~/.vim/autoload/plug.vim --create-dirs | |
| \ https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim | |
| let need_to_install_plugins = 1 | |
| endif | |
| call plug#begin() | |
| Plug 'tpope/vim-sensible' |