Dev environment setup

This commit is contained in:
Charlotte Van Petegem 2020-02-20 17:55:03 +01:00
parent e1afafff33
commit 36ca746b47
11 changed files with 260 additions and 166 deletions

View file

@ -0,0 +1,14 @@
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"; } ];
};
})
];
}