forked from mirrors_public/oddlama_nix-config
refactor: move full neovim config to only myuser
This commit is contained in:
parent
4c377b260e
commit
14329a9a5d
22 changed files with 23 additions and 40 deletions
15
users/myuser/neovim/default.nix
Normal file
15
users/myuser/neovim/default.nix
Normal file
|
@ -0,0 +1,15 @@
|
|||
{pkgs, ...}: {
|
||||
programs.neovim = {
|
||||
withPython3 = true;
|
||||
extraPython3Packages = pyPkgs: with pyPkgs; [openai];
|
||||
withNodeJs = true;
|
||||
};
|
||||
|
||||
xdg.configFile = {
|
||||
"nvim/lua".source = ./lua;
|
||||
"nvim/init.lua".source = ./init.lua;
|
||||
};
|
||||
|
||||
# TODO NO! NO! all of this goes away
|
||||
home.packages = with pkgs; [gcc shellcheck stylua];
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue