nixos-config/programs/direnv/shells/ledger.nix
Charlotte Van Petegem 36ca746b47 Dev environment setup
2020-02-21 15:21:06 +01:00

14 lines
380 B
Nix

let
pkgs = import <nixpkgs> {};
baseVimConfig = import ./vim-base.nix { inherit pkgs; };
in
pkgs.mkShell {
buildInputs = with pkgs; [
(neovim.override {
configure = {
customRC = baseVimConfig.customRC;
vam.pluginDictionaries = (baseVimConfig.vam.pluginDictionaries or []) ++ [ { name = "vim-ledger"; } ];
};
})
];
}