hackens-org-configurations/hackens/vim.nix
2021-11-02 19:30:28 +01:00

10 lines
215 B
Nix

{ pkgs, ... }: {
environment.systemPackages = with pkgs; [
nixfmt
git
(neovim.override {
vimAlias = true;
configure.plug.plugins = with vimPlugins; [ vim-nix vim-lastplace ];
})
];
}