neovide 0.15.2

Neovide: No Nonsense Neovim Gui
1
2
3
4
5
6
7
8
fn main() {
    #[cfg(windows)]
    {
        let mut res = winres::WindowsResource::new();
        res.set_icon("assets/neovide.ico");
        res.compile().expect("Could not attach exe icon");
    }
}