Add jedi, neovim to Nix shell

This commit is contained in:
Sumner Evans
2020-11-23 21:53:16 -07:00
parent 8fef15b1d0
commit eab7b33a50

View File

@@ -24,7 +24,14 @@ pkgs.mkShell {
cairo
mpv
poetry
python38
(
python38.withPackages (
ps: with ps; [
jedi
neovim
]
)
)
rnix-lsp
];