add nvim devShells
This commit is contained in:
@@ -27,6 +27,31 @@
|
||||
|
||||
};
|
||||
|
||||
nvim-bash = pkgs.mkShellNoCC {
|
||||
|
||||
packages = with pkgs; [
|
||||
clang
|
||||
|
||||
glfw
|
||||
glew
|
||||
|
||||
sdl3
|
||||
|
||||
curl
|
||||
glm
|
||||
nlohmann_json
|
||||
stb
|
||||
|
||||
gamenetworkingsockets
|
||||
|
||||
];
|
||||
|
||||
shellHook = ''
|
||||
exec nvim
|
||||
'';
|
||||
|
||||
};
|
||||
|
||||
zsh = pkgs.mkShellNoCC {
|
||||
|
||||
packages = with pkgs; [
|
||||
@@ -53,6 +78,32 @@
|
||||
|
||||
};
|
||||
|
||||
nvim-zsh = pkgs.mkShellNoCC {
|
||||
|
||||
packages = with pkgs; [
|
||||
clang
|
||||
|
||||
glfw
|
||||
glew
|
||||
|
||||
sdl3
|
||||
|
||||
curl
|
||||
glm
|
||||
nlohmann_json
|
||||
stb
|
||||
|
||||
gamenetworkingsockets
|
||||
|
||||
];
|
||||
|
||||
shellHook = ''
|
||||
export SHELL=$(realpath `which zsh`)
|
||||
exec nvim
|
||||
'';
|
||||
|
||||
};
|
||||
|
||||
default = self'.devShells.bash;
|
||||
};
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user