format all

This commit is contained in:
Kopatz
2025-10-30 21:59:31 +01:00
parent b1dda4d037
commit 8a78e618bb
188 changed files with 3526 additions and 1825 deletions

View File

@@ -1,47 +1,59 @@
{ lib, pkgs, osConfig, ... }:
{
lib,
pkgs,
osConfig,
...
}:
# https://nix-community.github.io/nixvim/NeovimOptions/index.html
let
cfg = osConfig.custom.nixvimPlugins;
args = { inherit lib pkgs; };
importFile = file:
let config = import file;
in if builtins.isFunction config then config args else config;
configs = map importFile ([
./config.nix
] ++ lib.optionals cfg [
./auto-pairs.nix
./autosave.nix
./blankline.nix
./barbar.nix
./cmp.nix
./fidget.nix
./refactoring.nix
./git.nix
./lightline.nix
./lsp.nix
./images.nix
./none-ls.nix
./nvim-tree.nix
importFile =
file:
let
config = import file;
in
if builtins.isFunction config then config args else config;
configs = map importFile (
[
./config.nix
]
++ lib.optionals cfg [
./auto-pairs.nix
./autosave.nix
./blankline.nix
./barbar.nix
./cmp.nix
./fidget.nix
./refactoring.nix
./git.nix
./lightline.nix
./lsp.nix
./images.nix
./none-ls.nix
./nvim-tree.nix
#./neo-tree.nix
./telescope.nix
./toggleterm.nix
./treesitter.nix
./trouble.nix
./which_key.nix
./wilder.nix
./typst-preview.nix
./markdown.nix
./hop.nix
./colorizer.nix
./surround.nix
./vimwiki.nix
]);
merged =
builtins.foldl' (acc: elem: lib.recursiveUpdate acc elem) { } configs;
./telescope.nix
./toggleterm.nix
./treesitter.nix
./trouble.nix
./which_key.nix
./wilder.nix
./typst-preview.nix
./markdown.nix
./hop.nix
./colorizer.nix
./surround.nix
./vimwiki.nix
]
);
merged = builtins.foldl' (acc: elem: lib.recursiveUpdate acc elem) { } configs;
in
{
home.sessionVariables = { EDITOR = "nvim"; };
home.packages = with pkgs; [ nixfmt-rfc-style ]; # nixd config option to set nixpkgs-fmt should work, but it doesn't
home.sessionVariables = {
EDITOR = "nvim";
};
home.packages = with pkgs; [ nixfmt-rfc-style ]; # nixd config option to set nixpkgs-fmt should work, but it doesn't
programs.nixvim = merged;
}