Sometimes you have to work with Windows but still want to use your favorite editor, neovim. This little project will help you integrate neovim into your daily Windows Explorer usage, by allowing to double-click files and open them in a new neovim tab. Of course, this tool can also be used on Linux.
- Make sure Neovim and Neovide are installed
- Add the directories with your Neovim and Neovide binaries to your PATH variable
- Install Rust via rustup for example
- Clone the repo
git clone https://github.com/cschlaak/nvimopen.git
- Build the project
cargo build
- Copy the produced
nvimopenbinary to a place where you (and your PATH variable) can find it (optional)
- Open a single file
nvimopen file.txt
- Open a file and jump to a line
nvimopen file.txt:22
- Open multiple files
nvimopen file1.txt:22 file2.txt

