update configs!!!!!

This commit is contained in:
Benjamin Palko 2024-07-15 20:34:59 -04:00
parent ab286ed4a2
commit c4ddee1d29
11 changed files with 107 additions and 315 deletions

29
home-manager/nvim.nix Normal file
View file

@ -0,0 +1,29 @@
{ 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";
};
}