This repository was archived by the owner on Apr 19, 2024. It is now read-only.
- Notifications
You must be signed in to change notification settings - Fork1
A Neovim Linter for the École 42 Norme.
License
NotificationsYou must be signed in to change notification settings
vinicius507/norme.nvim
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
A null-ls source for École 42norminette
- NeoVim
v0.8+
. - null-ls.nvim
- Executable
norminette
in yourPATH
Using lazy.nvim
Norme.nvim LazySpec:
localspec= {"vinicius507/norme.nvim",dependencies= {"jose-elias-alvarez/null-ls.nvim"}}
Using Packer
use({"vinicius507/norme.nvim",requires= {"jose-elias-alvarez/null-ls.nvim"}})
You can pass your configuration via thesetup
function.
WarningRemember to setup the plugin only after setting up null-ls!
require("null-ls").setup({... })require("norme").setup({-- Your configurationcmd=os.getenv('HOME')..'/.local/bin/norminette'})
Norme.nvim comes with the following defaults:
---@typeNormeConfiglocaldefaults= {cmd="norminette",}