Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/LucasTavaresA/headers.nvim
Zero-config header/footer warnings.
https://github.com/LucasTavaresA/headers.nvim
lua neovim neovim-plugin nvim plugin
Last synced: 7 days ago
JSON representation
Zero-config header/footer warnings.
- Host: GitHub
- URL: https://github.com/LucasTavaresA/headers.nvim
- Owner: LucasTavaresA
- License: gpl-3.0
- Created: 2024-11-27T21:24:03.000Z (about 2 months ago)
- Default Branch: main
- Last Pushed: 2025-01-01T22:35:07.000Z (18 days ago)
- Last Synced: 2025-01-01T23:27:04.523Z (17 days ago)
- Topics: lua, neovim, neovim-plugin, nvim, plugin
- Language: Lua
- Homepage:
- Size: 14.6 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-neovim - LucasTavaresA/headers.nvim - Zero-config header/footer warnings. (Project / PHP)
README
# headers.nvim
Zero-config header/footer warnings.
Turn on notifications in [Breaking Changes](https://github.com/LucasTavaresA/headers.nvim/issues/1) if using this plugin.
## Contents
- [Installation](#installation)
- [Options](#options)## Installation
[packer.nvim](https://github.com/wbthomason/packer.nvim):
```lua
use {
"lucastavaresa/headers.nvim",
config = function()
require("headers").setup()
end,
}
```[lazy.nvim](https://github.com/folke/lazy.nvim):
```lua
{
"lucastavaresa/headers.nvim",
opts = {},
}
```## Options
The setup function receives a table with the options, these are the default values:
```lua
{
paths_file = vim.fn.stdpath("data") .. "/headers.nvim/paths.lua",
}
```