13 lines
229 B
Nix
13 lines
229 B
Nix
|
{ config, pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
home.packages = with pkgs; [ black jq sqlfluff nixfmt shfmt ];
|
||
|
programs.neovim = {
|
||
|
enable = true;
|
||
|
viAlias = true;
|
||
|
vimAlias = true;
|
||
|
vimdiffAlias = true;
|
||
|
withPython3 = true;
|
||
|
};
|
||
|
}
|