headr 🚀
A simple VS Code extension that displays developer information in the header bar. 👨💻✨
Features 🛠️
- Shows developer name and details in the VS Code header 🧑💻
- Easy configuration via settings ⚙️
- Lightweight and fast ⚡
Installation 📦
- Download the latest
.vsix
file from the Releases.
- In VS Code, go to Extensions > ... > Install from VSIX.
- Select the downloaded file to install.
Usage 🎯
After installation, the developer header will appear automatically. You can configure the displayed information in the extension settings.
Configuration 📝
Add the following to your VS Code settings.json
:
{
"headr.fileExtensions": [".js", ".ts"],
"headr.lines": ["/**", " * @author {AUTHOR}", " * @since {SINCE}", " * @summary", " */"],
"headr.author": "Your Name",
"headr.documentation": "https://your.documentation.url",
"headr.ignoreFolders": ["node_modules", ".git", ".vscode", "dist", "out"]
}
Development 🧑🔬
- Clone the repository:
git clone https://github.com/sjoblomtobias/headr.git
- Install dependencies:
npm install
- Build and watch:
npm run watch
- Package the extension:
npm run package
License 📄
MIT