1
0
mirror of https://github.com/Andrey0189/nixos-config-reborn.git synced 2025-09-15 10:06:00 +03:00
Files
nixos-config-reborn/home-manager/modules/neovim.nix
andrey_varnavskiy 1e1a19cec7 add python lsp
2024-11-30 05:53:21 +05:00

11 lines
184 B
Nix

{ pkgs, ... }: {
programs.neovim = {
enable = true;
extraPackages = with pkgs; [
lua-language-server
python311Packages.python-lsp-server
nixd
];
};
}