You can edit most settings through the Settings panel ( in the sidebar).
The configuration file is also directly editable — Stratum auto-reloads on changes.
[vault]# Path to the vault root directorypath="~/StratumVault"[sync]# Sync mode: Manual, AutoCommit, AutoSyncmode="AutoCommit"# Git remote URLremote_url="git@github.com:user/vault.git"# Git branchbranch="main"# Auto-commit interval (seconds)auto_commit_interval_secs=300# Auto-sync interval (seconds)auto_sync_interval_secs=1800[theme]# Enable dark modedark_mode=true# Primary accent color (hex)primary_color="#f97316"# Secondary color (hex)secondary_color="#6b7280"# Base font size (pixels)font_size=16[ai]# LLM provider: ollama, openai, anthropic, google, zai, customprovider="ollama"# API endpoint URL (for ollama, custom, zai)endpoint="http://localhost:11434"# API key (for openai, anthropic, google)api_key=""# Default chat modelmodel="llama3.2"# List of models and their capabilitiesmodels=[{name="llama3.2",capabilities=["chat"]},{name="nomic-embed-text",capabilities=["embedding"]},]# Enable RAG (Retrieval-Augmented Generation)rag_enabled=true# Number of chunks to include in RAG contextrag_chunk_count=5[research]# SearXNG endpoint for web researchsearxng_endpoint="http://localhost:8888"# Max search results per querymax_results=3# Research depth (search-read cycles)max_depth=2[watcher]# Enable file system watcherenabled=true# Debounce interval (milliseconds)debounce_ms=500[graph]# Show connected componentsshow_connected=true# Show orphaned notesshow_orphaned=true# Show tag nodesshow_tags=true# Force-directed layout: charge strength (negative = repulsion)charge_strength=-30# Force-directed layout: link distancelink_distance=100# Force-directed layout: alpha decay ratealpha_decay=0.02# Force-directed layout: velocity decay ratevelocity_decay=0.4