hackens-org-configurations/hackens/vim.nix

11 lines
215 B
Nix
Raw Normal View History

2021-11-02 19:30:28 +01:00
{ pkgs, ... }: {
environment.systemPackages = with pkgs; [
nixfmt
git
(neovim.override {
vimAlias = true;
configure.plug.plugins = with vimPlugins; [ vim-nix vim-lastplace ];
})
];
}