Downloads:
1,358
Downloads of v 0.14.0:
27
Last Update:
07 Jan 2025
Package Maintainer(s):
Software Author(s):
- Keith Simmons
Tags:
neovim vim rust vulkan skia gpu neovim-guis- Software Specific:
- Software Site
- Software Source
- Software License
- Software Docs
- Software Issues
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Neovide (Portable)
- 1
- 2
- 3
0.14.0 | Updated: 07 Jan 2025
- Software Specific:
- Software Site
- Software Source
- Software License
- Software Docs
- Software Issues
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Downloads:
1,358
Downloads of v 0.14.0:
27
Maintainer(s):
Software Author(s):
- Keith Simmons
Neovide (Portable) 0.14.0
Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by Keith Simmons. The inclusion of Keith Simmons trademark(s), if any, upon this webpage is solely to identify Keith Simmons goods or services and not for commercial purposes.
- 1
- 2
- 3
All Checks are Passing
3 Passing Tests
Deployment Method: Individual Install, Upgrade, & Uninstall
To install Neovide (Portable), run the following command from the command line or from PowerShell:
To upgrade Neovide (Portable), run the following command from the command line or from PowerShell:
To uninstall Neovide (Portable), run the following command from the command line or from PowerShell:
Deployment Method:
This applies to both open source and commercial editions of Chocolatey.
1. Enter Your Internal Repository Url
(this should look similar to https://community.chocolatey.org/api/v2/)
2. Setup Your Environment
1. Ensure you are set for organizational deployment
Please see the organizational deployment guide
2. Get the package into your environment
Option 1: Cached Package (Unreliable, Requires Internet - Same As Community)-
Open Source or Commercial:
- Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://community.chocolatey.org/api/v2/. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
- You can also just download the package and push it to a repository Download
-
Open Source
-
Download the package:
Download - Follow manual internalization instructions
-
-
Package Internalizer (C4B)
-
Run: (additional options)
choco download neovide.portable --internalize --source=https://community.chocolatey.org/api/v2/
-
For package and dependencies run:
choco push --source="'INTERNAL REPO URL'"
- Automate package internalization
-
Run: (additional options)
3. Copy Your Script
choco upgrade neovide.portable -y --source="'INTERNAL REPO URL'" [other options]
See options you can pass to upgrade.
See best practices for scripting.
Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.
If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:
choco upgrade neovide.portable -y --source="'INTERNAL REPO URL'"
$exitCode = $LASTEXITCODE
Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
Exit 0
}
Exit $exitCode
- name: Install neovide.portable
win_chocolatey:
name: neovide.portable
version: '0.14.0'
source: INTERNAL REPO URL
state: present
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
chocolatey_package 'neovide.portable' do
action :install
source 'INTERNAL REPO URL'
version '0.14.0'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller neovide.portable
{
Name = "neovide.portable"
Version = "0.14.0"
Source = "INTERNAL REPO URL"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'neovide.portable':
ensure => '0.14.0',
provider => 'chocolatey',
source => 'INTERNAL REPO URL',
}
Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.
4. If applicable - Chocolatey configuration/installation
See infrastructure management matrix for Chocolatey configuration elements and examples.
This package is likely a meta/virtual (*) or an installer (*.install) or portable (*.portable) application package.
- Meta/virtual (*) - has a dependency on the *.install or the *.portable package - it is provided for discoverability and for other packages to take a dependency on.
- Portable (*.portable/*.commandline (deprecated naming convention)/*.tool (deprecated naming convention)) - usually zips or archives that require no administrative access to install.
- Install (*.install/*.app (deprecated naming convention)) - uses native installers, usually requires administrative access to install.
Learn more about chocolatey's distinction of installed versus portable apps and/or learn about this kind of package.
This package was approved as a trusted package on 08 Jan 2025.
This is a simple graphical user interface for Neovim (an aggressively refactored and updated
Vim editor). Where possible there are some graphical improvements, but functionally it should act like the terminal UI.
Features
Should be a standard fully featured Neovim GUI. Beyond that there are some visual niceties:
Ligatures
Supports ligatures and font shaping.
Animated Cursor
Cursor animates into position with a smear effect to improve tracking of cursor position.
Smooth Scrolling
Scroll operations on buffers in neovim will be animated smoothly pixel wise rather than line by line at a time. Note, multigrid must be
enabled for this to work.
https://github.com/neovide/neovide/wiki/Configuration#multigrid
Animated Windows
Windows animate into position when they are moved making it easier to see how layout changes happen. Note, multigrid must be enabled for
this to work.
https://github.com/neovide/neovide/wiki/Configuration#multigrid
Blurred Floating Windows
The backgrounds of floating windows are blurred improving the visual separation between foreground and background from
built in window transparency. Note, multigrid must be enabled for this to work.
https://github.com/neovide/neovide/wiki/Configuration#multigrid
Emoji Support
Font fallback supports rendering of emoji not contained in the configured font.
WSL Support
Neovide supports displaying a full gui window from inside wsl via the --wsl
command argument. Communication is passed via standard io into the wsl copy of neovim providing identical experience similar to visual studio code's remote editing https://code.visualstudio.com/docs/remote/remote-overview.
Remote TCP Support
Neovide supports connecting to a remote instance of Neovim over a TCP socket via the --remote-tcp
command argument. This would allow you to run Neovim on a remote machine and use the GUI on your local machine, connecting over the network.
Launch Neovim as a TCP server (on port 6666) by running:
nvim --headless --listen localhost:6666
And then connect to it using:
/path/to/neovide --remote-tcp=localhost:6666
By specifying to listen on localhost, you only allow connections from your local computer. If you are actually doing this over a network you will want to use SSH port forwarding for security, and then connect as before.
ssh -L 6666:localhost:6666 ip.of.other.machine nvim --headless --listen localhost:6666
Finally, if you would like to leave the neovim server running, close the neovide application window instead of issuing a :q
command.
Some Nonsense ;)
let g:neovide_cursor_vfx_mode = "railgun"
More to Come
We've got more ideas for simple unobtrusive improvements. More to come.
Configuration
Configuration is done almost completely via global neovide variables in your vim config and can be manipulated live at runtime. Details can be found here.
GNU LESSER GENERAL PUBLIC LICENSE
Version 3, 29 June 2007
Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
Everyone is permitted to copy and distribute verbatim copies
of this license document, but changing it is not allowed.
This version of the GNU Lesser General Public License incorporates
the terms and conditions of version 3 of the GNU General Public
License, supplemented by the additional permissions listed below.
0. Additional Definitions.
As used herein, "this License" refers to version 3 of the GNU Lesser
General Public License, and the "GNU GPL" refers to version 3 of the GNU
General Public License.
"The Library" refers to a covered work governed by this License,
other than an Application or a Combined Work as defined below.
An "Application" is any work that makes use of an interface provided
by the Library, but which is not otherwise based on the Library.
Defining a subclass of a class defined by the Library is deemed a mode
of using an interface provided by the Library.
A "Combined Work" is a work produced by combining or linking an
Application with the Library. The particular version of the Library
with which the Combined Work was made is also called the "Linked
Version".
The "Minimal Corresponding Source" for a Combined Work means the
Corresponding Source for the Combined Work, excluding any source code
for portions of the Combined Work that, considered in isolation, are
based on the Application, and not on the Linked Version.
The "Corresponding Application Code" for a Combined Work means the
object code and/or source code for the Application, including any data
and utility programs needed for reproducing the Combined Work from the
Application, but excluding the System Libraries of the Combined Work.
1. Exception to Section 3 of the GNU GPL.
You may convey a covered work under sections 3 and 4 of this License
without being bound by section 3 of the GNU GPL.
2. Conveying Modified Versions.
If you modify a copy of the Library, and, in your modifications, a
facility refers to a function or data to be supplied by an Application
that uses the facility (other than as an argument passed when the
facility is invoked), then you may convey a copy of the modified
version:
a) under this License, provided that you make a good faith effort to
ensure that, in the event an Application does not supply the
function or data, the facility still operates, and performs
whatever part of its purpose remains meaningful, or
b) under the GNU GPL, with none of the additional permissions of
this License applicable to that copy.
3. Object Code Incorporating Material from Library Header Files.
The object code form of an Application may incorporate material from
a header file that is part of the Library. You may convey such object
code under terms of your choice, provided that, if the incorporated
material is not limited to numerical parameters, data structure
layouts and accessors, or small macros, inline functions and templates
(ten or fewer lines in length), you do both of the following:
a) Give prominent notice with each copy of the object code that the
Library is used in it and that the Library and its use are
covered by this License.
b) Accompany the object code with a copy of the GNU GPL and this license
document.
4. Combined Works.
You may convey a Combined Work under terms of your choice that,
taken together, effectively do not restrict modification of the
portions of the Library contained in the Combined Work and reverse
engineering for debugging such modifications, if you also do each of
the following:
a) Give prominent notice with each copy of the Combined Work that
the Library is used in it and that the Library and its use are
covered by this License.
b) Accompany the Combined Work with a copy of the GNU GPL and this license
document.
c) For a Combined Work that displays copyright notices during
execution, include the copyright notice for the Library among
these notices, as well as a reference directing the user to the
copies of the GNU GPL and this license document.
d) Do one of the following:
0) Convey the Minimal Corresponding Source under the terms of this
License, and the Corresponding Application Code in a form
suitable for, and under terms that permit, the user to
recombine or relink the Application with a modified version of
the Linked Version to produce a modified Combined Work, in the
manner specified by section 6 of the GNU GPL for conveying
Corresponding Source.
1) Use a suitable shared library mechanism for linking with the
Library. A suitable mechanism is one that (a) uses at run time
a copy of the Library already present on the user's computer
system, and (b) will operate properly with a modified version
of the Library that is interface-compatible with the Linked
Version.
e) Provide Installation Information, but only if you would otherwise
be required to provide such information under section 6 of the
GNU GPL, and only to the extent that such information is
necessary to install and execute a modified version of the
Combined Work produced by recombining or relinking the
Application with a modified version of the Linked Version. (If
you use option 4d0, the Installation Information must accompany
the Minimal Corresponding Source and Corresponding Application
Code. If you use option 4d1, you must provide the Installation
Information in the manner specified by section 6 of the GNU GPL
for conveying Corresponding Source.)
5. Combined Libraries.
You may place library facilities that are a work based on the
Library side by side in a single library together with other library
facilities that are not Applications and are not covered by this
License, and convey such a combined library under terms of your
choice, if you do both of the following:
a) Accompany the combined library with a copy of the same work based
on the Library, uncombined with any other library facilities,
conveyed under the terms of this License.
b) Give prominent notice with the combined library that part of it
is a work based on the Library, and explaining where to find the
accompanying uncombined form of the same work.
6. Revised Versions of the GNU Lesser General Public License.
The Free Software Foundation may publish revised and/or new versions
of the GNU Lesser General Public License from time to time. Such new
versions will be similar in spirit to the present version, but may
differ in detail to address new problems or concerns.
Each version is given a distinguishing version number. If the
Library as you received it specifies that a certain numbered version
of the GNU Lesser General Public License "or any later version"
applies to it, you have the option of following the terms and
conditions either of that published version or of any later version
published by the Free Software Foundation. If the Library as you
received it does not specify a version number of the GNU Lesser
General Public License, you may choose any version of the GNU Lesser
General Public License ever published by the Free Software Foundation.
If the Library as you received it specifies that a proxy can decide
whether future versions of the GNU Lesser General Public License shall
apply, that proxy's public statement of acceptance of any version is
permanent authorization for you to choose that version for the
Library.
VERIFICATION
Verification is intended to assist the Chocolatey moderators and community
in verifying that this package's contents are trustworthy.
Package can be verified like this:
1. Go to https://github.com/neovide/neovide/releases/0.14.0, and download from there.
AnyArch: https://github.com/neovide/neovide/releases/download/0.14.0/neovide.exe.zip
to download the executable. You may wish to rename the file.
2. You can use one of the following methods to obtain the SHA512 checksum:
- Use powershell function 'Get-FileHash'
- Use Chocolatey utility 'checksum.exe'
checksum: b2b8899f374ec278eb6eebb7a1a6afb5d97fa39d836bd8e9d152daa56a8f5ca7ded11a233ceb7608d03075dc0ca5a918bd902e1e04f319d2c3ec5ee2a97b0031
File 'LICENSE.txt' obtained from:
https://github.com/neovide/neovide/blob/0.14.0/LICENSE
md5: 293363205A550DD81842B49C5E76DF0B | sha1: 484784C676B326161BA4D5F9FB7DC07F8707B119 | sha256: B9296539947468898ED306E2B1678908E4125F5FBB5AF1027EE4EC17958901AF | sha512: B2B8899F374EC278EB6EEBB7A1A6AFB5D97FA39D836BD8E9D152DAA56A8F5CA7DED11A233CEB7608D03075DC0CA5A918BD902E1E04F319D2C3EC5EE2A97B0031
Log in or click on link to see number of positives.
- neovide.portable.0.14.0.nupkg (b9665e23e06d) - ## / 68
- neovide.exe (b92965399474) - ## / 72
In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).
Chocolatey Pro provides runtime protection from possible malware.
Add to Builder | Version | Downloads | Last Updated | Status |
---|---|---|---|---|
Neovide (Portable) 0.14.0 | 27 | Tuesday, January 7, 2025 | Approved | |
Neovide (Portable) 0.13.3 | 23 | Wednesday, December 11, 2024 | Approved | |
Neovide (Portable) 0.13.2 | 11 | Tuesday, December 10, 2024 | Approved | |
Neovide (Portable) 0.13.1 | 65 | Tuesday, July 16, 2024 | Approved | |
Neovide (Portable) 0.13.0 | 49 | Saturday, June 8, 2024 | Approved | |
Neovide (Portable) 0.12.2 | 67 | Wednesday, February 14, 2024 | Approved | |
Neovide (Portable) 0.12.1 | 40 | Monday, February 5, 2024 | Approved | |
Neovide (Portable) 0.12.0 | 49 | Tuesday, January 2, 2024 | Approved | |
Neovide (Portable) 0.11.2 | 71 | Monday, October 23, 2023 | Approved | |
Neovide (Portable) 0.11.1 | 63 | Friday, September 8, 2023 | Approved | |
Neovide (Portable) 0.11.0 | 55 | Saturday, August 19, 2023 | Approved | |
Neovide (Portable) 0.10.4 | 70 | Wednesday, April 12, 2023 | Approved | |
Neovide (Portable) 0.10.3 | 45 | Tuesday, April 11, 2023 | Approved | |
Neovide (Portable) 0.10.2 | 56 | Wednesday, March 15, 2023 | Approved | |
Neovide (Portable) 0.10.1 | 45 | Tuesday, March 14, 2023 | Approved | |
Neovide (Portable) 0.10.0 | 50 | Monday, March 13, 2023 | Approved | |
Neovide (Portable) 0.9.0 | 59 | Saturday, March 11, 2023 | Approved | |
Neovide (Portable) 0.8.0 | 43 | Wednesday, March 8, 2023 | Approved | |
Neovide (Portable) 0.7.0 | 47 | Tuesday, March 7, 2023 | Approved | |
Neovide (Portable) 0.6.0 | 65 | Sunday, February 5, 2023 | Approved | |
Neovide (Portable) 0.5.0 | 100 | Sunday, January 22, 2023 | Approved | |
Neovide (Portable) 0.4.0 | 76 | Sunday, January 15, 2023 | Approved | |
Neovide (Portable) 0.3.0 | 59 | Saturday, January 7, 2023 | Approved | |
Neovide (Portable) 0.2.0 | 58 | Tuesday, December 13, 2022 | Approved | |
Neovide (Portable) 0.1.0 | 65 | Monday, November 28, 2022 | Approved |
Copyright © 2019 - 2024 Keith Simmons
What's Changed
The main highlights are:
Rounded floating windows;
Users now have the option to choose the mouse cursor icon;
Apple code signing and notarization to bolster security and user trust;
Added default support to Metal rendering for macOS users as a first class citizen having OpenGL optional still.
The performance and smoothness took a noticeable improvement due to the seamless integration on Apples specific hardware and it's a quite impactful merge;
New Features
feat: add support of Metal renderer on macOS. by @crupest in https://github.com/neovide/neovide/pull/2461
on macOS, activate when launched by @fboundp in https://github.com/neovide/neovide/pull/2799
feat: add normal opacity by @lucobellic in https://github.com/neovide/neovide/pull/2780
feat: add mouse cursor icon option by @falcucci in https://github.com/neovide/neovide/pull/2834
disable AppKit's command line processing by @fboundp in https://github.com/neovide/neovide/pull/2798
Update syn to 2.x to reduce package repetition in the binary by @Kethku in https://github.com/neovide/neovide/pull/2811
Windows app icon to display in old alt+tab on Windows. by @madcdevelop in https://github.com/neovide/neovide/pull/2816
Remove
lazy_static
by @InfyniteHeap in https://github.com/neovide/neovide/pull/2821internal: Use macOS-latest runners and bump MACOSX_DEPLOYMENT_TARGET to 10.11 by @falcucci in https://github.com/neovide/neovide/pull/2844
feat: Rounded floating windows (#1993) by @jheroy in https://github.com/neovide/neovide/pull/2743
feat: create apple code signing and notarization by @falcucci in https://github.com/neovide/neovide/pull/2814
feat: add title bar colours for windows by @teehee567 in https://github.com/neovide/neovide/pull/2827
Initialize the window when 'win_viewport_margins' is received by @fredizzimo in https://github.com/neovide/neovide/pull/2904
feat: backtraces file path config in https://github.com/neovide/neovide/pull/2717
Bug Fixes
fix: Force Neovide to exit, even if the IO streams are not closed by @fredizzimo in https://github.com/neovide/neovide/pull/2765
fix: drag and drop files on application icon in Dock to open not work. by @crupest in https://github.com/neovide/neovide/pull/2782
fix: Mouse scrolling when multigrid is disabled by @fredizzimo in https://github.com/neovide/neovide/pull/2805
fix: Update winit to 0.30.5 by @fredizzimo in https://github.com/neovide/neovide/pull/2806
Fix macos download link by @Kethku in https://github.com/neovide/neovide/pull/2808
fix: error if trying to specify font style overrides without a family by @xzbdmw in https://github.com/neovide/neovide/pull/2812
bug: make sure to load and set the app icon for any context by @falcucci in https://github.com/neovide/neovide/pull/2832
fix: ci build errors by @fredizzimo in https://github.com/neovide/neovide/pull/2851
Fix: --wayland_app_id doesn't work by @floflo0 in https://github.com/neovide/neovide/pull/2847
fix: rounded corners rendering by @lucobellic in https://github.com/neovide/neovide/pull/2857
fix: pasting ^M symbols from clipboard by @damiandimanov in https://github.com/neovide/neovide/pull/2869
fix: handle font changes during frame prepare by @fredizzimo in https://github.com/neovide/neovide/pull/2909
fix: setting of lines/columns on Wayland by @fredizzimo in https://github.com/neovide/neovide/pull/2907
fix: the calculation of the window size by @fredizzimo in https://github.com/neovide/neovide/pull/2908
fix: the calculation of the window size (attempt 2) by @fredizzimo in https://github.com/neovide/neovide/pull/2912
fix: crash when flushed before win_pos by @fredizzimo in https://github.com/neovide/neovide/pull/2913
fix: Neovide transparency works for floating windows again by @fredizzimo in https://github.com/neovide/neovide/pull/2916
fix: add
text_background_opacity
in the opaque validation by @falcucci in https://github.com/neovide/neovide/pull/2917
Other Changes
docs: improve installation instructions and build steps for macOS by @falcucci in https://github.com/neovide/neovide/pull/2875
Add faq entry for disabling all animations by @Kethku in https://github.com/neovide/neovide/pull/2810
docs: consolidate macOS build instructions and scripts by @falcucci in https://github.com/neovide/neovide/pull/2716
chore: Update dependencies by @fredizzimo in https://github.com/neovide/neovide/pull/2902
chore: fix the formatting by @fredizzimo in https://github.com/neovide/neovide/pull/2903
chore: Switch to glamour instead of euclid by @fredizzimo in https://github.com/neovide/neovide/pull/2708
chore: Update to winit 0.30.3 by @fredizzimo in https://github.com/neovide/neovide/pull/2698
chore: update create-dmg package installation by @falcucci in https://github.com/neovide/neovide/pull/2756
chore: update objc2 and remove icrate. also some refactor. by @crupest in https://github.com/neovide/neovide/pull/2768
chore: update funding to
open_collective
by @falcucci in https://github.com/neovide/neovide/pull/2880chore: add stylua.toml and format code by @lucobellic in https://github.com/neovide/neovide/pull/2823
chore: update
skia-safe
version to0.80.0
by @falcucci in https://github.com/neovide/neovide/pull/2873
New Contributors
@fboundp made their first contribution in https://github.com/neovide/neovide/pull/2798
@madcdevelop made their first contribution in https://github.com/neovide/neovide/pull/2816
@jheroy made their first contribution in https://github.com/neovide/neovide/pull/2743
@floflo0 made their first contribution in https://github.com/neovide/neovide/pull/2847
@teehee567 made their first contribution in https://github.com/neovide/neovide/pull/2827
@damiandimanov made their first contribution in https://github.com/neovide/neovide/pull/2869
Full Changelog: https://github.com/neovide/neovide/compare/0.13.3...0.14.0
Funding
Neovide will always be free and open-source, but it isn't free to make! Because Neovide is free, we rely on the generosity of the community to fund our efforts. If you are a happy user of Neovide, please consider donating. every bit helps!
Project sponsorship and funding
Neovide offers a simple sponsorship program that allows companies to get visibility and recognition among various developers.
You can sponsor or fund the project via Open collective
-
- neovim (≥ 0.8.0)
- vcredist140 (≥ 14.20.27508.1)
Ground Rules:
- This discussion is only about Neovide (Portable) and the Neovide (Portable) package. If you have feedback for Chocolatey, please contact the Google Group.
- This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
- The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
- Tell us what you love about the package or Neovide (Portable), or tell us what needs improvement.
- Share your experiences with the package, or extra configuration or gotchas that you've found.
- If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.