Add back scripting languages commonly used
Restore python (with pylsp) and JS, remove gfortran from default installed programming languages. Figured I would want scripting languages on the fly but compiled languages will be focussed on a project, so no issue having a nix-shell env.
This commit is contained in:
parent
e8d9643f87
commit
0667438150
|
@ -12,18 +12,23 @@
|
||||||
# Shell
|
# Shell
|
||||||
shfmt
|
shfmt
|
||||||
shellcheck
|
shellcheck
|
||||||
|
nodePackages.prettier
|
||||||
|
|
||||||
# Lua
|
# Lua
|
||||||
(luajit.withPackages (ps: [(ps.callPackage ./luarocks/scilua.nix {})]))
|
(luajit.withPackages
|
||||||
|
(ps: [(ps.callPackage ./luarocks/scilua.nix {})]))
|
||||||
luarocks-nix
|
luarocks-nix
|
||||||
lua-language-server
|
lua-language-server
|
||||||
stylua
|
stylua
|
||||||
|
|
||||||
# Python
|
# Python
|
||||||
|
(python3.withPackages
|
||||||
|
(ps: with ps; [python-lsp-server mypy isort]))
|
||||||
ruff
|
ruff
|
||||||
|
|
||||||
# Fortran
|
# JavaScript / TypeScript
|
||||||
gfortran
|
nodejs
|
||||||
fortls
|
nodePackages.typescript-language-server
|
||||||
|
nodePackages.eslint
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue