mirror of
https://github.com/lloeki/vimfiles.git
synced 2025-12-06 05:24:39 +01:00
Add shell.nix
This commit is contained in:
parent
82581bb4cb
commit
7b15337084
2 changed files with 11 additions and 0 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
|
@ -3,3 +3,4 @@ tmp/
|
||||||
.netrwhist
|
.netrwhist
|
||||||
plugged/*
|
plugged/*
|
||||||
autoload/plug.vim.old
|
autoload/plug.vim.old
|
||||||
|
/.envrc
|
||||||
|
|
|
||||||
10
shell.nix
Normal file
10
shell.nix
Normal 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
|
||||||
|
];
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue