{"id":49382011,"url":"https://github.com/vinicius507/ft_nvim","last_synced_at":"2026-05-14T17:00:53.823Z","repository":{"id":248148557,"uuid":"827897278","full_name":"vinicius507/ft_nvim","owner":"vinicius507","description":"A Neovim plugin for École 42","archived":false,"fork":false,"pushed_at":"2026-04-26T04:24:28.000Z","size":69,"stargazers_count":1,"open_issues_count":0,"forks_count":2,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-04-26T06:23:14.931Z","etag":null,"topics":["42header","42saopaulo","42school","ecole-42","neovim","neovim-plugin","norminette"],"latest_commit_sha":null,"homepage":"","language":"Lua","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/vinicius507.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2024-07-12T16:05:51.000Z","updated_at":"2026-04-26T04:24:34.000Z","dependencies_parsed_at":"2024-07-12T18:25:13.452Z","dependency_job_id":"922279bb-1e16-4e31-9a87-392c654c626e","html_url":"https://github.com/vinicius507/ft_nvim","commit_stats":null,"previous_names":["vinicius507/ft_nvim"],"tags_count":7,"template":false,"template_full_name":null,"purl":"pkg:github/vinicius507/ft_nvim","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vinicius507%2Fft_nvim","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vinicius507%2Fft_nvim/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vinicius507%2Fft_nvim/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vinicius507%2Fft_nvim/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/vinicius507","download_url":"https://codeload.github.com/vinicius507/ft_nvim/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vinicius507%2Fft_nvim/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33034788,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-13T13:14:54.681Z","status":"online","status_checked_at":"2026-05-14T02:00:06.663Z","response_time":57,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["42header","42saopaulo","42school","ecole-42","neovim","neovim-plugin","norminette"],"created_at":"2026-04-28T06:00:27.056Z","updated_at":"2026-05-14T17:00:53.815Z","avatar_url":"https://github.com/vinicius507.png","language":"Lua","funding_links":[],"categories":["Tools"],"sub_categories":["Editor Extensions"],"readme":"# 42 Nvim\n\nNeovim plugin for [École 42](https://42.fr).\n\n## Features\n\n- **42 Header**: Utilities to manage the 42 header in your files.\n- **Norminette Integration**: Use [norminette](https://github.com/42School/norminette) as a diagnostics source.\n\n## Installation\n\n**Requirements:**\n\n- [Neovim](https://github.com/neovim/neovim) \u003e= 0.6.0\n- [nvim-lint](https://github.com/mfussenegger/nvim-lint) (Optional, used for norminette integration)\n\nYou can install the plugin using your favorite package manager:\n\n- [lazy.nvim 💤](https://github.com/folke/lazy.nvim)\n\n```lua\n---@type LazySpec\nreturn {\n\t\"vinicius507/ft_nvim\",\n\tcmd = { \"FtHeader\", \"Norme\" }, -- Lazy load the commands.\n\tft = { \"c\", \"cpp\" }, -- Lazy load for .c and .h files.\n\t---@type ft_nvim.Config\n\topts = {},\n}\n```\n\n- [packer.nvim](https://github.com/wbthomason/packer.nvim)\n\n```lua\nuse({\n\t\"vinicius507/ft_nvim\",\n\tcmd = { \"FtHeader\", \"Norme\" }, -- Lazy load the commands.\n\tft = { \"c\", \"cpp\" }, -- Lazy load for .c and .h files.\n\tconfig = function()\n\t\trequire(\"ft_nvim\").setup()\n\tend,\n})\n```\n\n- Neovim's built-in package manager\n\n```sh\ngit clone --depth 1 https://github.com/vinicius507/ft_nvim \\\n\t${XDG_DATA_HOME:-~/.local/share}/nvim/site/pack/packer/start/ft_nvim\n```\n\n## Configuration\n\nThe plugin can be configured by calling the `setup` function and passing an optional configuration object.\n\nThe following options are available:\n\n```lua\nrequire(\"ft_nvim\").setup({\n\t-- Configures the 42 Header integration\n\theader = {\n\t\t-- Enable the 42 Header integration (default: true).\n\t\tenabled = true,\n\t\t-- Your Intranet username (default: \"marvin\").\n\t\tusername = \"marvin\",\n\t\t-- Your Intranet email (default: \"marvin@42.fr\").\n\t\temail = \"marvin@42.fr\",\n\t},\n\t-- Configures the norminette integration.\n\tnorminette = {\n\t\t-- Enable the norminette integration (default: true).\n\t\tenabled = true,\n\t\t-- The command to run norminette (default: \"norminette\").\n\t\tcmd = \"norminette\",\n\t\t-- A function to conditionally enable the norminette integration (default: nil)\n\t\tcondition = function()\n\t\t\treturn true\n\t\tend,\n\t},\n})\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvinicius507%2Fft_nvim","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fvinicius507%2Fft_nvim","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvinicius507%2Fft_nvim/lists"}