summary refs log tree commit diff stats
path: root/user/settings/development/zig.nix
blob: 69c2ea8068514ac1079b4e2a709fa02904498afd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{
  config,
  pkgs,
  ...
}: {
  programs.emacs.extraPackages = epkgs: (with epkgs; [
    zig-mode
  ]);
  programs.neovim.plugins = with pkgs.vimPlugins; [
    zig-vim
  ];
}