Search This Blog

Compile Neovide from source on Mac OS

  • Install the latest version of Rust.
  • Install CMake. Using homebrew:
    brew install cmake
  • Check out the source code:
    git clone https://github.com/neovide/neovide
  • Compile and install the binary: neovide into ~/.cargo/bin:
    cd neovide
    cargo install --path .
    The resulting binary is to be found under ~/.cargo/bin.
  • In case you want a nice application bundle:
    cargo install cargo-bundle
    cargo bundle --release
    Copy ./target/release/bundle/osx/neovide.app to ~/Applications and enjoy.



See also

No comments:

Post a Comment