blob: c2800102d3d27035729a1475953eacea61aba808 [file] [log] [blame]
Skyler Greya7feb6e2022-08-26 06:51:55 +01001{
2 pkgs,
3 lib,
4 ...
5}: {
6 programs.neovim = {
7 plugins = with pkgs.vimPlugins; [
8 neoformat
9 ];
10 extraConfig = builtins.readFile ./setup.vim;
11 extraPackages = with pkgs; [
12 nodePackages.prettier
13 alejandra
14 rustfmt
15 shfmt
16 ];
17 };
18}