-
Notifications
You must be signed in to change notification settings - Fork 0
Getting Started
The repository documents unsigned development packages. Exact supported OS versions are not stated.
scoop bucket add folea https://github.com/ivanovanatoliy/scoop-folea
scoop install folea-devThe package builds a pinned develop commit locally.
brew install --cask ivanovanatoliy/folea/folea-devThe app uses an ad-hoc signature. It is not signed with an Apple Developer certificate or notarized.
Arch Linux, Manjaro, or EndeavourOS:
yay -S folea-gitDebian, Ubuntu, or Linux Mint:
sudo install -d -m 0755 /etc/apt/keyrings
curl -fsSL https://ivanovanatoliy.github.io/folea/repo-signing-key.asc \
| sudo tee /etc/apt/keyrings/folea-packages.asc >/dev/null
curl -fsSL https://ivanovanatoliy.github.io/folea/apt/folea.sources \
| sudo tee /etc/apt/sources.list.d/folea.sources >/dev/null
sudo apt update
sudo apt install folea-devFedora:
sudo curl -fsSL https://ivanovanatoliy.github.io/folea/rpm/folea.repo \
-o /etc/yum.repos.d/folea.repo
sudo dnf install folea-devUse Node >=22.0.0 <25 and npm 11.12.1. From a checkout of the develop branch:
npm install
npm run app:installRemove that installation with:
npm run app:uninstallThe install script registers the unpacked app for the current OS. A source install does not provide the folea command on every platform: the script creates a Linux wrapper, copies folea.app on macOS, and creates a Start Menu shortcut on Windows.
Repository packaging also targets macOS DMG, Windows NSIS, and Linux AppImage/DEB builds. GitHub Releases are manually cut from main and are not signed. This wiki does not assume a particular release asset or download URL.
A vault is any directory containing Typst notes. For a minimal vault:
my-notes/
└── welcome.typ
Example welcome.typ:
= Welcome
This is my first folea note.Normal notes are paths ending exactly in .typ. folea excludes these directories from its note index:
.obsidian
.git
node_modules
.folea
.folea-cache
_templates
_templates is reserved for note templates. It is handled separately from normal notes.
- Start folea.
- Choose Open vault.
- Pick the vault directory in the Open Typst vault system dialog.
- Open a note with
Ctrl+p,Ctrl+b, or the mouse.
The start screen shows up to 10 recent vaults. Click a recent vault to reopen it, or use its remove button to remove it from the list.
On later starts, folea tries to reopen the last accessible vault. If that path is missing or is no longer a directory, folea removes it from saved state and shows the start screen. Closing a vault returns to the start screen but does not clear it as the last-opened vault, so it can reopen next time.
Within a vault, folea tries the saved last note, then a valid recent note, then the first indexed note.
Press Ctrl+e. folea opens the current .typ file in an external editor.
With no configuration, the fallback is:
code --reuse-window <absolute-note-path>
If that does not suit you, configure editor.command or FOLEA_EDITOR_CMD in Configuration.
- Read with
j,k,Space, andShift+Space. - Open notes with
Ctrl+por the tree atCtrl+b. - Search the current note with
/. - Open full-vault search through
:and choose Open vault search (search.openGlobal). - Jump through headings with
oand links withb. - Open the current file in your editor with
Ctrl+e.
Next: Features.