My bad. I did misinterpret your "pseudo-code".
The package manager (dnf) installs (RPM) packages.
A package provides files (executables, libs, config) and has dependencies.
The package manager ensures that all required packages are installed after package is.
For example, the EPEL has four packages that have "neovim" in their name:
# dnf -q --enablerepo=epel list \*neovim\*
Available Packages
neovim.x86_64 0.8.0-0.el9 epel
neovim-ale.noarch 3.3.0-1.el9 epel
python-neovim-doc.noarch 0.4.3-5.el9 epel
python3-neovim.noarch 0.4.3-5.el9 epel |
I don't know any of them. The neovim-ale has description:
ALE (Asynchronous Lint Engine) is a plugin providing linting (syntax checking and semantic errors) in NeoVim while you edit your text files, and acts as a Vim Language Server Protocol client. |
and requires neovim. The neovim requires luajit and other packages.
Therefore, installing neovim-ale will install neovim, but installing neovim will not install neovim-ale. The neovim-ale is an optional addon.
The ALE is an LSP?
One could create (RPM) packages for other LSPs and in them, or as separate package the rest of configuration (except the bits that are up to each user). A package for cmake LSP should probably require neovim and cmake packages.
The Mason is a conceptual problem. The idea of (dnf) managed packages is that the manager "knows" every file it has installed. If the Mason replaces files, then it "corrupts" the install made by dnf. All those "new neovim things" should be built into (RPM) packages and update installed with dnf, not Mason ...
What I do for "source installs" is to have then in entirely different subtree, apart from dnf-managed files and written by regular user, not root.
There are
configuration management systems (e.g. Ansible, Chef, Puppet) that may help with those config file edits. As example, I have Ansible "playbook" that installs all needed RPM-packages and deploys all customizations to system config. That play is in Git repo(s), so there is both "backup" and history. Install of new machine is trivial.