Added alejandra for formatting
Formatted all files in repo and set up alejandra to run automatically when nix files are saved.
This commit is contained in:
parent
fc14e637c0
commit
d149b9b70b
|
@ -1,4 +1,4 @@
|
|||
{
|
||||
{pkgs, ...}: {
|
||||
plugins.lsp = {
|
||||
enable = true;
|
||||
servers = {
|
||||
|
@ -19,7 +19,13 @@
|
|||
ocamllsp.enable = true;
|
||||
|
||||
# nix
|
||||
nixd.enable = true;
|
||||
nixd = {
|
||||
enable = true;
|
||||
settings.formatting.command = ["${pkgs.alejandra}/bin/alejandra"];
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
plugins.lsp-format.enable = true;
|
||||
plugins.lsp-lines.enable = true;
|
||||
}
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
};
|
||||
"sectionSeparators" = {
|
||||
right = "";
|
||||
left= "";
|
||||
left = "";
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
20
flake.nix
20
flake.nix
|
@ -7,9 +7,12 @@
|
|||
flake-parts.url = "github:hercules-ci/flake-parts";
|
||||
};
|
||||
|
||||
outputs =
|
||||
{ nixvim, flake-parts, ... }@inputs:
|
||||
flake-parts.lib.mkFlake { inherit inputs; } {
|
||||
outputs = {
|
||||
nixvim,
|
||||
flake-parts,
|
||||
...
|
||||
} @ inputs:
|
||||
flake-parts.lib.mkFlake {inherit inputs;} {
|
||||
systems = [
|
||||
"x86_64-linux"
|
||||
"aarch64-linux"
|
||||
|
@ -17,9 +20,11 @@
|
|||
"aarch64-darwin"
|
||||
];
|
||||
|
||||
perSystem =
|
||||
{ pkgs, system, ... }:
|
||||
let
|
||||
perSystem = {
|
||||
pkgs,
|
||||
system,
|
||||
...
|
||||
}: let
|
||||
nixvimLib = nixvim.lib.${system};
|
||||
nixvim' = nixvim.legacyPackages.${system};
|
||||
nixvimModule = {
|
||||
|
@ -31,8 +36,7 @@
|
|||
};
|
||||
};
|
||||
nvim = nixvim'.makeNixvimWithModule nixvimModule;
|
||||
in
|
||||
{
|
||||
in {
|
||||
checks = {
|
||||
# Run `nix flake check .` to verify that your config is not broken
|
||||
default = nixvimLib.check.mkTestDerivationFromNixvimModule nixvimModule;
|
||||
|
|
Loading…
Reference in a new issue