update configs!!!!!
This commit is contained in:
parent
ab286ed4a2
commit
c4ddee1d29
11 changed files with 107 additions and 315 deletions
29
home-manager/nvim.nix
Normal file
29
home-manager/nvim.nix
Normal 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";
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue