[PR #118] [MERGED] feat: upgrade astronvim to v4 #141

Closed
opened 2025-12-29 04:21:41 +01:00 by adam · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/ryan4yin/nix-config/pull/118
Author: @ryan4yin
Created: 4/12/2024
Status: Merged
Merged: 4/13/2024
Merged by: @ryan4yin

Base: mainHead: astronvim-v4


📝 Commits (8)

  • c5dcc7e feat(home/base/tui/editors/neovim): upgrade astronvim to v4
  • ac844a6 feat(home/base/tui/editors/neovim): astronvim v4 - leader => Leader
  • 9a45cc6 feat(home/base/tui/editors/neovim): astronvim v4 - gT => gy
  • fd62548 feat(home/base/tui/editors/neovim): astronvim v4 - comment some demo
  • efc5244 chore: remove astronvim from flake inputs
  • a1d827a fix: astronvim colorscheme - catppuccin
  • fb6ca6b fix: telescope extensions, astrocore & astrolsp
  • 0e31ec9 fix: astronvim v4 - none-ls formatting

📊 Changes

45 files changed (+1056 additions, -691 deletions)

View changed files

📝 .typos.toml (+1 -0)
📝 Justfile (+4 -4)
📝 flake.lock (+0 -18)
📝 flake.nix (+0 -5)
📝 home/base/tui/editors/README.md (+1 -1)
home/base/tui/editors/neovim/astronvim_user/.gitignore (+0 -2)
home/base/tui/editors/neovim/astronvim_user/.nfnl.fnl (+0 -1)
home/base/tui/editors/neovim/astronvim_user/init.lua (+0 -579)
home/base/tui/editors/neovim/astronvim_user/mappings.lua (+0 -66)
📝 home/base/tui/editors/neovim/default.nix (+5 -15)
home/base/tui/editors/neovim/nvim/.neoconf.json (+20 -0)
📝 home/base/tui/editors/neovim/nvim/.stylua.toml (+0 -0)
home/base/tui/editors/neovim/nvim/init.lua (+19 -0)
home/base/tui/editors/neovim/nvim/lua/community.lua (+59 -0)
home/base/tui/editors/neovim/nvim/lua/lazy_setup.lua (+34 -0)
home/base/tui/editors/neovim/nvim/lua/plugins/astrocore.lua (+107 -0)
home/base/tui/editors/neovim/nvim/lua/plugins/astrolsp.lua (+205 -0)
home/base/tui/editors/neovim/nvim/lua/plugins/astroui.lua (+38 -0)
home/base/tui/editors/neovim/nvim/lua/plugins/autosave.lua (+8 -0)
home/base/tui/editors/neovim/nvim/lua/plugins/catppuccin.lua (+8 -0)

...and 25 more files

📄 Description

Fix #116

After upgrading, update all plugins to the latest version via lazy.nvim to avoid problems.


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/ryan4yin/nix-config/pull/118 **Author:** [@ryan4yin](https://github.com/ryan4yin) **Created:** 4/12/2024 **Status:** ✅ Merged **Merged:** 4/13/2024 **Merged by:** [@ryan4yin](https://github.com/ryan4yin) **Base:** `main` ← **Head:** `astronvim-v4` --- ### 📝 Commits (8) - [`c5dcc7e`](https://github.com/ryan4yin/nix-config/commit/c5dcc7e24d2c7b4a4b47fe5402d7f2287386eaea) feat(home/base/tui/editors/neovim): upgrade astronvim to v4 - [`ac844a6`](https://github.com/ryan4yin/nix-config/commit/ac844a6a3d8aa685cc89e71d7906c497492e33aa) feat(home/base/tui/editors/neovim): astronvim v4 - leader => Leader - [`9a45cc6`](https://github.com/ryan4yin/nix-config/commit/9a45cc64487a2c6ebd7f135161e78baa5235202c) feat(home/base/tui/editors/neovim): astronvim v4 - gT => gy - [`fd62548`](https://github.com/ryan4yin/nix-config/commit/fd62548dc0cd40366b8ca407c8b600db9a4cfdae) feat(home/base/tui/editors/neovim): astronvim v4 - comment some demo - [`efc5244`](https://github.com/ryan4yin/nix-config/commit/efc524466c477019d67d52f4ef3c763ec261dba0) chore: remove astronvim from flake inputs - [`a1d827a`](https://github.com/ryan4yin/nix-config/commit/a1d827a34ed90a2c32521765aed7e10596d17ac4) fix: astronvim colorscheme - catppuccin - [`fb6ca6b`](https://github.com/ryan4yin/nix-config/commit/fb6ca6b12d7cb87b7a7fc2b0f1a7be8d6801dac3) fix: telescope extensions, astrocore & astrolsp - [`0e31ec9`](https://github.com/ryan4yin/nix-config/commit/0e31ec94ce9eba2df94cd3901ed90756f981578e) fix: astronvim v4 - none-ls formatting ### 📊 Changes **45 files changed** (+1056 additions, -691 deletions) <details> <summary>View changed files</summary> 📝 `.typos.toml` (+1 -0) 📝 `Justfile` (+4 -4) 📝 `flake.lock` (+0 -18) 📝 `flake.nix` (+0 -5) 📝 `home/base/tui/editors/README.md` (+1 -1) ➖ `home/base/tui/editors/neovim/astronvim_user/.gitignore` (+0 -2) ➖ `home/base/tui/editors/neovim/astronvim_user/.nfnl.fnl` (+0 -1) ➖ `home/base/tui/editors/neovim/astronvim_user/init.lua` (+0 -579) ➖ `home/base/tui/editors/neovim/astronvim_user/mappings.lua` (+0 -66) 📝 `home/base/tui/editors/neovim/default.nix` (+5 -15) ➕ `home/base/tui/editors/neovim/nvim/.neoconf.json` (+20 -0) 📝 `home/base/tui/editors/neovim/nvim/.stylua.toml` (+0 -0) ➕ `home/base/tui/editors/neovim/nvim/init.lua` (+19 -0) ➕ `home/base/tui/editors/neovim/nvim/lua/community.lua` (+59 -0) ➕ `home/base/tui/editors/neovim/nvim/lua/lazy_setup.lua` (+34 -0) ➕ `home/base/tui/editors/neovim/nvim/lua/plugins/astrocore.lua` (+107 -0) ➕ `home/base/tui/editors/neovim/nvim/lua/plugins/astrolsp.lua` (+205 -0) ➕ `home/base/tui/editors/neovim/nvim/lua/plugins/astroui.lua` (+38 -0) ➕ `home/base/tui/editors/neovim/nvim/lua/plugins/autosave.lua` (+8 -0) ➕ `home/base/tui/editors/neovim/nvim/lua/plugins/catppuccin.lua` (+8 -0) _...and 25 more files_ </details> ### 📄 Description Fix #116 After upgrading, update all plugins to the latest version via lazy.nvim to avoid problems. --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
adam added the pull-request label 2025-12-29 04:21:41 +01:00
adam closed this issue 2025-12-29 04:21:41 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/nix-config-ryan4yin#141