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
flowchart TD
%% Style definitions
classDef development fill:#F8F4FF,stroke:#6B46C1,stroke-width:2px,color:#1F2937
classDef evaluation fill:#F0FDF4,stroke:#16A34A,stroke-width:2px,color:#1F2937
classDef ci fill:#FEF2F2,stroke:#DC2626,stroke-width:2px,color:#1F2937
classDef deployment fill:#F0F9FF,stroke:#2563EB,stroke-width:2px,color:#1F2937
classDef monitoring fill:#FFFBEB,stroke:#D97706,stroke-width:2px,color:#1F2937
classDef analysis fill:#FAFAF9,stroke:#78716C,stroke-width:2px,color:#1F2937
classDef improvement fill:#FFF7ED,stroke:#EA580C,stroke-width:2px,color:#1F2937A 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
I am a Spanish speaker attempting to communicate in English. Please help me refine my text with the following guidelines:
🌐 Language Assistance (Secondary Priority):
| # 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' |