dotfiles/home-manager/nvim.nix
2024-07-15 20:34:59 -04:00

29 lines
354 B
Nix

{ pkgs, ... }:
{
home.packages = with pkgs; [
python3
nodejs
bun
rustc
go
cargo
ripgrep
xclip
fzf
nixfmt-rfc-style
lazygit
];
xdg.configFile.nvim = {
source = ../nvim;
recursive = true;
};
programs.neovim = {
enable = true;
};
home.sessionVariables = {
EDITOR = "nvim";
};
}