Nix noob. How do I add rustaceanvim to my home-manager config and set it up correctly #59
-
Here's my config. Would love to learn how to add |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
Hey 👋
It looks like your flake is using the If you want to use the bleeding-edge latest version of this plugin, I also provide a flake that you can add to your flake's inputs: rustaceanvim.url = "github:mrcjkb/rustaceanvim"; And then you can add nixpkgs.overlays = [
inputs.rustaceanvim.overlays.default
]; As you've been using The Breaking changes from Hope this helps 😄 |
Beta Was this translation helpful? Give feedback.
-
Solved my toolchain issue too. :D And I am using kickstart-nix.nvim. |
Beta Was this translation helpful? Give feedback.
Hey 👋
rustaceanvim
is available in nixpkgs-unstable and will be available in the NixOS 23.11 release (which should be out by the end of this month).It looks like your flake is using the
master
branch ofnixpks
, so it should be available there, too. I.e. you should be able to just addrustaceanvim
to yourplugins
list and you're good to go.If you want to use the bleeding-edge latest version of this plugin, I also provide a flake that you can add to your flake's inputs:
And then you can add
inputs.rustaceanvim.overlays.default
to your NixOS module:As you've been using
rust-tool…