📦 Installation Guide¶
Get LookAtni File Markers up and running in your VS Code environment.
VS Code Extension¶
From VS Code Marketplace¶
- Open VS Code
- Go to Extensions (
Ctrl+Shift+X/Cmd+Shift+X) - Search for "LookAtni File Markers"
- Click Install on the official extension by Rafa Mori
- Reload VS Code when prompted
From VSIX File¶
If you have a .vsix file:
- Open VS Code
- Open Command Palette (
Ctrl+Shift+P/Cmd+Shift+P) - Type
Extensions: Install from VSIX... - Select the
.vsixfile - Restart VS Code
Verify Installation¶
After installation, verify everything works:
- Open Command Palette (
Ctrl+Shift+P) - Type "LookAtni" - you should see all available commands
- Try
LookAtni: Quick Demoto test the extension
System Requirements¶
Minimum Requirements¶
- VS Code: Version 1.102.0 or higher
- Node.js: Version 18.0 or higher (for CLI tools)
- Operating System: Windows 10+, macOS 10.15+, or Linux
Recommended Setup¶
- VS Code: Latest stable version
- Node.js: Latest LTS version
- Package Manager: npm 9.0+ or pnpm 8.0+
- Memory: 4GB+ RAM for large projects
CLI Tools Installation¶
For advanced users who want to use LookAtni CLI tools:
Prerequisites¶
# Ensure Node.js and npm are installed
node --version # Should be 18.0+
npm --version # Should be 9.0+
Install TSX Runner¶
# Install tsx globally for TypeScript execution
npm install -g tsx
# Verify installation
tsx --version
Clone Repository (Optional)¶
For development or advanced CLI usage:
# Clone the repository
git clone https://github.com/kubex-ecosystem/lookatni-file-markers.git
cd lookatni-file-markers
# Install dependencies
npm install
# Test CLI tools
npm run lookatni help
Configuration¶
Default Settings¶
LookAtni works out of the box with sensible defaults:
{
"lookatni.defaultMaxFileSize": 1000,
"lookatni.showStatistics": true,
"lookatni.autoValidate": false,
"lookatni.excludePatterns": [
"node_modules",
".git",
"dist",
"build"
]
}
Workspace Configuration¶
Create .vscode/settings.json in your workspace:
{
"lookatni.defaultMaxFileSize": 500,
"lookatni.showStatistics": true,
"lookatni.autoValidate": true,
"lookatni.excludePatterns": [
"node_modules",
".git",
"*.log",
"coverage"
]
}
Troubleshooting¶
Common Issues¶
Extension Not Loading¶
- Check VS Code version - must be 1.102.0+
- Restart VS Code completely
- Check extension logs in Output panel
- Reinstall extension if necessary
Commands Not Found¶
- Reload VS Code window (
Ctrl+Shift+P→ "Reload Window") - Check for extension conflicts
- Verify installation in Extensions panel
CLI Tools Not Working¶
- Install tsx globally:
npm install -g tsx - Check Node.js version:
node --version - Verify PATH includes npm global binaries
Getting Help¶
- GitHub Issues: Report bugs
- Discussions: Ask questions
- Documentation: Browse guides
Next Steps¶
Once installed, head to the Quick Start Guide to begin using LookAtni File Markers!
🎉 Installation Complete!
You're ready to revolutionize your code organization workflow with LookAtni File Markers!