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 | |
| 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 '')
| -rw-r--r-- | TODO.md | 9 | ||||
| m--------- | astronvim-config | 0 | ||||
| -rw-r--r-- | configuration.nix | 2 | ||||
| -rw-r--r-- | neovim.nix | 23 | ||||
| -rw-r--r-- | stylix.nix | 2 |
5 files changed, 26 insertions, 10 deletions
@@ -4,7 +4,14 @@ - [ ] fix workspace 4 icon - [ ] fix startup tmux session - +### waybar +- [ ] fix the bar to run properly and display time accurately +### rofi wayland +- [ ] fix this crap to be better ## Fish - [ ] keybind to accept autocomplete other than right arrow + + +## Neovim +- [ ] combine tmux and neovim status bar diff --git a/astronvim-config b/astronvim-config deleted file mode 160000 -Subproject 3d60141a648aabfd15504a09d408784d3abae96 diff --git a/configuration.nix b/configuration.nix index 7f6debf..9e50119 100644 --- a/configuration.nix +++ b/configuration.nix @@ -81,6 +81,8 @@ libnotify bibata-cursors libsecret + gdu + unzip ]; programs.steam = { enable = true; @@ -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; }; } @@ -35,7 +35,7 @@ qt.enable = true; vim.enable = true; - neovim.enable = true; + neovim.enable = false; kitty.enable = true; # Kitty terminal ghostty.enable = true; |
