nix-config/home/neovim/common.nix

20 lines
263 B
Nix
Raw Normal View History

2022-01-18 09:32:55 +01:00
{ config, pkgs, ... }:
{
2022-05-25 09:58:20 +02:00
home.packages = with pkgs; [
black
jq
# sqlfluff
nixfmt
shfmt
hlint
];
2022-01-18 09:32:55 +01:00
programs.neovim = {
enable = true;
viAlias = true;
vimAlias = true;
vimdiffAlias = true;
withPython3 = true;
};
}