diff options
| author | Andrew <admonty1@protonmail.com> | 2025-11-08 16:39:09 -0500 |
|---|---|---|
| committer | Andrew <admonty1@protonmail.com> | 2025-11-08 16:39:09 -0500 |
| commit | 877abc3cebf5a7c28731e1531ef832d6d0f427da (patch) | |
| tree | fb0f4f636061c87bc0ccbc2a7b4f450be6682409 /neovim.nix | |
| parent | add astronvim config (diff) | |
| download | nixos-877abc3cebf5a7c28731e1531ef832d6d0f427da.tar.gz nixos-877abc3cebf5a7c28731e1531ef832d6d0f427da.tar.bz2 nixos-877abc3cebf5a7c28731e1531ef832d6d0f427da.zip | |
fix neovim by removing stylix target
Diffstat (limited to 'neovim.nix')
| -rw-r--r-- | neovim.nix | 23 |
1 files changed, 15 insertions, 8 deletions
@@ -4,17 +4,24 @@ pkgs, inputs, ... -}: let -dotfiles.mutable = true; -dotfiles.path = "${config.home.homeDirectory}/.dotfiles"; - filePath = "${config.dotfiles.path}/astronvim-config"; - configSrc = - config.lib.file.mkOutOfStoreSymlink filePath; -in { - xdg.configFile."nvim".source = ./astronvim-config; +}: { + home.file.".config/nvim".source = config.lib.file.mkOutOfStoreSymlink "/home/andrew/.dotfiles/astronvim-config"; + programs.ripgrep.enable = true; + programs.lazygit.enable = true; + programs.bottom.enable = true; + + # home.persistence."/persist${config.home.homeDirectory}" = { + # directories = [ + # ".local/share/nvim" + # ".local/state/nvim" + # ".cache/nvim" + # ]; + # }; programs.neovim = { enable = true; + withPython3 = true; + withNodeJs = true; defaultEditor = true; }; } |
