Add shell.nix

This commit is contained in:
Loic Nageleisen 2024-06-11 13:26:03 +02:00
parent 82581bb4cb
commit 7b15337084
Signed by: lloeki
GPG key ID: D05DAEE6889F94C2
2 changed files with 11 additions and 0 deletions

1
.gitignore vendored
View file

@ -3,3 +3,4 @@ tmp/
.netrwhist
plugged/*
autoload/plug.vim.old
/.envrc

10
shell.nix Normal file
View file

@ -0,0 +1,10 @@
{ pkgs ? import(fetchTarball("https://github.com/NixOS/nixpkgs/archive/d51f8579f03a76718d643dd184ae964e6f0dd751.tar.gz")) {} }:
pkgs.mkShell {
nativeBuildInputs = with pkgs; [
vim
neovim
vim-language-server
vim-vint
];
}