Installation
Installing Lighthouse
Section titled “Installing Lighthouse”Lighthouse is available in Obsidian’s Community Plugins directory. The fastest way to install it is straight from the web listing.
Prerequisites
Section titled “Prerequisites”- Obsidian v1.12.0 or later
- Basic familiarity with Obsidian’s interface
Install from the Community Plugins website
Section titled “Install from the Community Plugins website”- Open the Lighthouse listing on the Obsidian Community Plugins website
- Click Add to Obsidian — this opens Obsidian directly and takes you to the plugin’s install page
- Click Install, then Enable
Alternative: install from inside Obsidian
Section titled “Alternative: install from inside Obsidian”- Go to Settings → Community plugins
- Disable Restricted Mode if you haven’t already
- Click Browse and search for “Lighthouse”
- Click Install, then Enable
Manual Installation
Section titled “Manual Installation”If you’d rather install the files by hand, or want a specific release:
Option 1: Download a Release
Section titled “Option 1: Download a Release”- Go to the Lighthouse GitHub Releases page
- Download the latest release
.zipfile - Extract the archive
- Copy
main.js,manifest.json, andstyles.cssto your vault:YourVault/.obsidian/plugins/lighthouse/ - Restart Obsidian
- Go to Settings → Community Plugins
- Disable Restricted Mode if you haven’t already
- Find Lighthouse in your installed plugins and enable it
Option 2: Build from Source
Section titled “Option 2: Build from Source”If you want the latest development version:
-
Clone the repository:
Terminal window git clone https://github.com/benjamincassidy/lighthouse.gitcd lighthouse -
Install dependencies:
Terminal window npm install -
Build the plugin:
Terminal window npm run build -
Copy the built files to your vault:
Terminal window # Replace /path/to/vault with your actual vault pathcp main.js manifest.json styles.css /path/to/vault/.obsidian/plugins/lighthouse/ -
Restart Obsidian and enable the plugin
Verify Installation
Section titled “Verify Installation”Once installed and enabled, you should see:
- A Lighthouse icon in the left ribbon (sidebar)
- Lighthouse commands available in the Command Palette (Cmd/Ctrl+P)
- A new Lighthouse section in Settings
Troubleshooting
Section titled “Troubleshooting”Plugin doesn’t appear after installation
Section titled “Plugin doesn’t appear after installation”- Make sure all three files (
main.js,manifest.json,styles.css) are in the correct folder - The folder name must be exactly
lighthouse(lowercase) - Try restarting Obsidian completely (quit and reopen)
- Check that you’ve disabled Restricted Mode in Settings → Community Plugins
Plugin won’t enable
Section titled “Plugin won’t enable”- Check the Obsidian console (Cmd/Ctrl+Shift+I) for error messages
- Ensure you’re running Obsidian v1.12.0 or later
- Try reinstalling the plugin files
- Report persistent issues on GitHub Issues
Next Steps
Section titled “Next Steps”Now that Lighthouse is installed, let’s create your first project! Continue to Quick Start.