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,13 @@
let
pkgs = import <nixpkgs> {};
in
pkgs.mkShell {
buildInputs = with pkgs; [
(neovim.override {
configure = {
customRC = baseVimConfig.customRC;
vam.pluginDictionaries = (baseVimConfig.vam.pluginDictionaries or []);
};
})
];
}