15 lines
295 B
Nix
15 lines
295 B
Nix
{ config, pkgs, ... }:
|
|
{
|
|
programs.neovim = {
|
|
enable = true;
|
|
defaultEditor = true;
|
|
viAlias = true;
|
|
vimAlias = true;
|
|
};
|
|
|
|
home.packages = with pkgs; [
|
|
ripgrep fd gcc nodejs unzip
|
|
lua-language-server stylua nil
|
|
(python3.withPackages (ps: with ps; [ pynvim ]))
|
|
];
|
|
}
|