format everything

This commit is contained in:
Noa Aarts 2024-06-04 12:18:23 +02:00
parent 9c28397d38
commit b54f3d54f1
37 changed files with 1185 additions and 1173 deletions

View file

@ -1,21 +1,21 @@
{ pkgs, lib, ... }:
{ pkgs, lib, ... }:
{
home.packages = with pkgs; [
# needed for the nvim config, neovim itself is a system package already
ripgrep
home.packages = with pkgs; [
# needed for the nvim config, neovim itself is a system package already
ripgrep
# TODO: find how I can make this build dependencies only
gnumake
rustc
python3
];
programs.neovim = {
enable = true;
defaultEditor = true;
viAlias = true;
vimAlias = true;
# TODO: find how I can make this build dependencies only
gnumake
rustc
python3
];
programs.neovim = {
enable = true;
defaultEditor = true;
viAlias = true;
vimAlias = true;
extraLuaConfig = lib.fileContents ./init.lua;
};
extraLuaConfig = lib.fileContents ./init.lua;
};
}