Skip to content

Is it possible to use neovide with the nixcats config? #99

Answered by BirdeeHub
Damnjelly asked this question in Q&A
Discussion options

You must be logged in to vote

With neovide you can set the executable/command to run with neovide

Simply point your neovide install at the path or the name of the package that you wish to run within neovide

Works regardless of wrapRc.

You can install neovide with a simple wrapper script that launches it with the argument that sets this path/command

neovide --neovim-bin your_package_name

or

neovide = pkgs.writeShellScriptBin "neovide" ''
  exec ${pkgs.neovide}/bin/neovide --neovim-bin ${yourpackage}/bin/${yourpackage.nixCats_packageName} "$@"
'';
# put that in your packages list instead of neovide

If you installed via module you wont already have the package available but you can grab the package from the config variable

Replies: 2 comments

Comment options

You must be logged in to vote
0 replies
Answer selected by Damnjelly
Comment options

You must be logged in to vote
0 replies
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants