mirror of
https://github.com/Dichgrem/DCGOS.git
synced 2025-12-17 03:31:59 -05:00
23 lines
419 B
Nix
23 lines
419 B
Nix
{pkgs, ...}: {
|
|
plugins = {
|
|
lsp.servers.lua_ls.enable = true;
|
|
|
|
conform-nvim.settings = {
|
|
formatters_by_ft = {
|
|
lua = ["stylua"];
|
|
};
|
|
|
|
formatters = {
|
|
stylua = {
|
|
command = "${pkgs.stylua}/bin/stylua";
|
|
};
|
|
};
|
|
};
|
|
|
|
lint = {
|
|
lintersByFt.lua = ["luacheck"];
|
|
linters.luacheck.cmd = "${pkgs.lua54Packages.luacheck}/bin/luacheck";
|
|
};
|
|
};
|
|
}
|