nix-config/home/neovim/common.nix

13 lines
235 B
Nix
Raw Normal View History

2022-01-18 09:32:55 +01:00
{ config, pkgs, ... }:
{
2022-02-02 13:33:02 +01: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;
};
}