nix-config/home/features/coding/nvim.nix
2023-12-27 22:51:29 +01:00

34 lines
516 B
Nix

{
config,
lib,
pkgs,
vars,
...
}: let
in {
programs.neovim = {
enable = true;
};
home = {
file.".config/nvim/lua/custom/" = {
source = ../../../rsc/config/nvim;
recursive = true;
};
packages = with pkgs; [
gcc
black
python310Packages.debugpy # is this working?
mypy
ruff
nodePackages.pyright
clang-tools_16
rnix-lsp
rust-analyzer
nodePackages.eslint_d
nodePackages.jsonlint
alejandra
];
};
}