Skip to content

QUICKSTART

Getting Started with Snipset

Snipset is a paid, one-time-license app. Buy once, download with your license code, and go from install to first text expansion in minutes. The app itself sends no telemetry; your snippets stay on your machine.

Verified against Snipset v0.6.780 (2026-09-06).

BEFORE YOU START

What you need to know first

Three facts that shape every step below. Read this once and the rest of the guide makes sense.

  • One-time license, no subscription, no free trial. One Individual key activates one machine; Team keys cover up to 5.
  • Your license key unlocks two things: the download page and the app itself. You verify the code once on the download page, then pick any installer below. Public channels such as winget, Scoop, or the Microsoft Store carry the same build, but the installed app still asks for your key when it first runs.
  • The app is private by design: no analytics SDKs, opt-in crash reports only. AI runs on your machine via Ollama, except the default cloud-hybrid chat model which needs internet.
STEP 1: DOWNLOAD AND INSTALL

Grab the native installer for your OS

Snipset runs natively with no browser engine overhead. Installs are per-user and need no admin rights for core text expansion.

PlatformHow to get itNotes
PlatformWindows 10 or 11, 64-bit (x64)How to get itMSI or EXE from the download pageNotesPer-user install, no admin needed
PlatformWindows package managersHow to get itwinget, Scoop, Chocolatey, or the 1-click scriptNotesSame build as the MSI, after license check
PlatformWindows via Microsoft StoreHow to get itMSIX packageNotesNewest channel, auto-updates with the Store
PlatformLinux on Debian or Ubuntu, 64-bit (x64)How to get itDEB package from the download pageNotesDeclares WebKitGTK, xdotool, and tray deps
PlatformOther Linux distros, 64-bit (x64)How to get itPortable AppImage from the download pageNotesCovers Fedora, Arch, and the rest
PlatformAndroid 8.0+How to get itUniversal APK (arm64, armv7, x86_64)NotesDirect sideload from the download page
PlatformmacOS and iOSHow to get itNot shipped yetNotesmacOS is on the public roadmap

No matter where the installer comes from, Snipset asks for your license key when it first runs.

winget install BelajarCaraBelajar.Snipset

Windows, via winget

scoop install snipset

Windows, via Scoop

irm https://snipset.belajarcarabelajar.com/install.ps1 | iex

Windows, 1-click script

STEP 2: CREATE YOUR FIRST SNIPPET

Define a keyword and its replacement

Open Snipset from the system tray, press Ctrl+N or click + New Snippet, and fill in three fields. Save with Ctrl+S.

  • Name is only a label for you, for example My Email Address.
  • Keyword is the short text you type to trigger the expansion, for example //email or /standup. Keywords starting with // are the recommended convention.
  • Content is the full text that gets pasted, for example your.name@example.com. Content can hold variables such as #{clipboard} or #{date:%Y-%m-%d}.
  • Matching is strict by default. Open Matching in the docs when a keyword fires too eagerly or not at all.
STEP 3: EXPAND TEXT ANYWHERE

Type in any app and watch it expand

Expansion replaces your keyword in place. Snipset's own FAQ pins replacement under 5 ms, the Magic Menu opens in under 30 ms, and search across 10,000 snippets stays under 2 ms.

  • Type //email in VS Code, Notion, Slack, Word, or Chrome and it expands instantly.
  • Press Ctrl+[ for the Magic Menu: a spotlight overlay to search and insert any snippet without opening the main window.
  • Press Ctrl+] for Clipboard History: pick any recent copy to paste it back in one step.
  • Press Ctrl+Shift+V for the Paste Queue when you need several entries pasted in order.
REFERENCE: DEFAULT SHORTCUTS

Every global shortcut, out of the box

These are the defaults mirrored from the docs reference. Change any of them under Settings, Expansion and Shortcuts, Global Shortcuts.

ActionDefault shortcutWhat it does
ActionOpen Snippet Magic MenuDefault shortcutCtrl+[What it doesSpotlight-style search overlay to insert any snippet.
ActionOpen Clipboard Magic MenuDefault shortcutCtrl+]What it doesOverlay to paste recently copied text or images.
ActionOpen AI Creator MenuDefault shortcutCtrl+Shift+SpaceWhat it doesAI snippet creation prompt overlay, anywhere on screen.
ActionOpen MFA MenuDefault shortcutCtrl+Shift+MWhat it does2FA and TOTP authentication overlay.
ActionOpen Tasks MenuDefault shortcutAlt+DWhat it doesQuick tasks and to-do overlay.
ActionOpen Downloads MenuDefault shortcutCtrl+Shift+DWhat it doesRecent downloads management overlay.
ActionSmart Shorthand (Selection)Default shortcutCtrl+Shift+SWhat it doesExpand selected shorthand via the on-device model.
ActionPaste QueueDefault shortcutCtrl+Shift+VWhat it doesQueue multiple clipboard entries for sequential pasting.
ActionGenerate PasswordDefault shortcutCtrl+Alt+PWhat it doesGenerate and copy a Vault password.
ActionVoice Dictation, Translation, Ask-Anything, Read AloudDefault shortcutAlt+., Alt+A, Alt+S, Alt+IWhat it doesSpeech shortcuts under Settings, Audio and Voice.

If a combination does nothing, another app already claimed it. Pick a different mix in Settings.

WHAT IS INCLUDED

More than a snippet expander

Snipset ships a full productivity toolkit around your snippets. Each card links to its own docs page.

MAKE SNIPPETS DYNAMIC

Variables in one glance

Variables always use the #{...} form with a case-sensitive name. Moment-style tokens like YYYY only work inside datetime_adv; plain date: takes chrono tokens such as %Y-%m-%d.

VariableExpands toExample
Variable#{clipboard}Expands toCurrent clipboard textExampleHi #{clipboard}, noted.
Variable#{date:%Y-%m-%d}Expands toToday in year-month-day orderExampleReport #{date:%Y-%m-%d}
Variable#{datetime_adv:YYYY-MM-DD||}Expands toToday with Moment-style formattingExampleDue #{datetime_adv:YYYY-MM-DD||}
Variable#{input:Label}Expands toAsks you for a value on expandExampleHi #{input:Name}, welcome.
Variable#{selection}Expands toCurrently selected textExampleQuote: #{selection}

Full list lives in the variables reference.

OPTIONAL: ON-DEVICE AI

Set up local AI via Ollama

Unlock AI chat, AI snippet generation, and semantic search. These are the exact models currently shipped and used: a cloud-hybrid chat default plus a 229 MB local embedding model.

  • Install Ollama from ollama.com and leave it running; Snipset talks to http://127.0.0.1:11434 by default.
  • In Snipset go to Settings, AI and Models, AI Configuration, pick your chat and embed models from the dropdowns, and look for the green Online indicator.
  • Run the Embedding Sync once so OmniSearch can index your library.
ollama pull gemma4:31b-cloud

Default chat model. Cloud hybrid under 1 KB locally: instant answers with no local RAM load, but needs internet and Ollama Cloud sign-in.

ollama pull hf.co/lmstudio-community/embeddinggemma-300m-qat-GGUF

Embedding model for OmniSearch semantic search, 229 MB on disk.

ollama pull llama3.2:3b

Optional. Fully offline chat alternative, 2.0 GB, for machines without internet.

QUICK ANSWERS

Questions every newcomer asks

Short answers to the questions that decide a purchase.

Is Snipset free? Is there a trial?
No. Snipset is a paid one-time-license product with no free trial. You buy a key, verify it once on the download page, and install on your platform.
Does Snipset spy on my typing?
No. The desktop app ships no analytics SDKs and crash reports are opt-in. Your snippets live in a local database on your machine.
Which AI models do I actually need?
Two pulls cover the default setup: gemma4:31b-cloud for chat and the 229 MB EmbeddingGemma QAT model for semantic search. The chat default is a cloud hybrid, so it needs internet; pull llama3.2:3b instead for fully offline chat.
Why did my date variable print literally instead of expanding?
Because plain date: takes chrono tokens, so writing YYYY-MM-DD there prints as literal text. Use #{date:%Y-%m-%d}, or #{datetime_adv:YYYY-MM-DD||} for Moment-style tokens.
Where do I change a shortcut?
Under Settings, Expansion and Shortcuts, Global Shortcuts. If a new combination does nothing, another app already claimed it.
Is there a version for macOS?
Not yet. macOS is on the public roadmap. Windows, Linux, and Android are supported today.
How fast is expansion really?
The docs pin replacement under 5 ms, Magic Menu opening under 30 ms, and search across 10,000 snippets under 2 ms.
KEEP GOING

Where to go from here

You have the essentials. These pages take you deeper without repeating this guide.

Ready to Type Less?

Get your license today and reclaim hours of your week.

Get AccessExplore Features