mirror of
https://github.com/Cian-H/my_nvim_config.git
synced 2026-01-03 08:51:58 +00:00
24 lines
338 B
Nix
24 lines
338 B
Nix
{
|
|
pkgs,
|
|
lib,
|
|
config,
|
|
inputs,
|
|
...
|
|
}: {
|
|
packages = [
|
|
pkgs.git
|
|
pkgs.lua-language-server
|
|
pkgs.selene
|
|
pkgs.stylua
|
|
];
|
|
|
|
scripts.typecheck.exec = "lua-language-server --check=. --checklevel=Warning";
|
|
|
|
languages.lua.enable = true;
|
|
|
|
git-hooks.hooks = {
|
|
selene.enable = true;
|
|
stylua.enable = true;
|
|
};
|
|
}
|