A GUI frontend for neovim.
Find a file
akiyosi b824f592b2
Some checks are pending
CI / test-and-build-linux-x86_64 (1.24.x, ubuntu-24.04) (push) Waiting to run
CI / test-and-build-linux-arm64 (1.24.x, ubuntu-24.04-arm) (push) Waiting to run
CI / test-and-build-macos-x86_64 (1.24.x, macos-13) (push) Waiting to run
CI / test-and-build-macos-arm64 (1.24.x, macos-14, 5.15.16) (push) Waiting to run
CI / test-and-build-windows-mingw (1.24.0, windows-latest) (push) Waiting to run
CI / test-and-build-windows-mingw-arm64 (1.24.0, windows-11-arm) (push) Waiting to run
CI / build-windows-mingw-static (1.24.0, windows-latest) (push) Waiting to run
CI / build-windows-mingw-arm-static (1.24.0, windows-11-arm) (push) Waiting to run
Merge pull request #624 from akiyosi/no-autocmd
Refactor runtime behavior to minimize autocmd usage
2025-12-09 00:15:17 +09:00
.github/workflows fix windows CI 2025-11-08 11:19:57 +09:00
cmd/goneovim Change application icon 2025-11-02 12:16:48 +09:00
editor Refactor runtime behavior to minimize autocmd usage 2025-12-08 21:31:09 +09:00
filer Change Filer update handling to use an internal update mechanism instead of the DirChanged autocmd 2025-11-30 14:32:44 +09:00
runtime/doc Fix casing of "Titlebar" in options 2025-08-25 22:35:13 +09:00
util update for akiyosi/qt 2023-07-19 08:38:12 +09:00
.gitignore Minor fixes: delete unnecessary files 2025-08-24 09:28:35 +09:00
.golangci.yml Minor fixes 2020-07-17 00:47:05 +09:00
Development.md Update doc 2023-11-21 00:34:04 +09:00
generate_objcbridge.go Fix possible memory access violation in cgo code 2024-06-14 14:53:12 +09:00
go.mod Add ARM64 build support 2025-10-27 17:43:51 +09:00
go.sum Add ARM64 build support 2025-10-27 17:43:51 +09:00
goneovim.go Add ability to open files from Finder in macOS 2024-06-09 23:00:32 +09:00
LICENSE Create LICENSE 2017-08-27 04:26:33 +01:00
Makefile Add ARM64 build support 2025-10-27 17:43:51 +09:00
README.md v0.6.16 2025-08-09 21:04:47 +09:00

goneovim

CI Go Report Card GitHub Releases Join the chat at https://gitter.im/goneovim/community

goneovim (pronounced like "go-neovim") is a Neovim GUI written in Go, using a Qt binding for Go. This repository forked from the original Gonvim for the purpose of maintenance and enhancement.

Why Neovim GUI

Traditionally, Neovim (and even Vim) has been optimized for working with Terminal, and some Terminal-based workflows cannot be achieved with a GUI. Therefore, for some people, a GUI would be an unnecessary additional stuff. On the other hand, in my opinion, there are some attractive features of GUI as follows.

  • More meta keys can be used
    • Since Neovim performs all of its operations with the keyboard, having more meta keys available is a simple advantage.
  • Terminal is also available in Neovim GUI
    • Neovim has an embedded terminal emulator that can be run in :terminal, so you can run basic terminal workflows using :terminal with bash or zsh in Neovim GUI. It is also possible to use remote control tools such as nvr to avoid nvim in nvim in Neovim GUI.
  • Experience the rich drawing expressions of GUI
    • For example, it is possible to scroll based on pixels, to set different font families and point sizes for each window.

If you are interested in these GUI attractions, try goneovim.

Features

All of the features are optional. You can use it like a plain nvim or as a nvim with a rich UI.

  • Cross-platform
  • Modern Text Editor Features
    • Smooth pixel scroll (Support for both touchpad and Vim scroll command reactions.)
    • Animated Cursor
    • Ligatures
    • Built-in Indent guide
    • Scrollbar
    • Workspace feature which manages multiple nvim
  • Features as neovim GUI
    • Externalizable tabline, popupmenu, wildmenu, cmdline, messages
    • Support gui option: guifont, guifontwide, guifont=*, linespace, guicursor. You don't need neovim-gui-shim
    • Supports per character font fallback feature
    • Support mouse
    • Independent font settings per window (experimental)
    • Attach/Connect feature to a remote nvim
    • WSL integration (for Windows)
    • Own clipboard provider
  • Basic feature as a Text Editor
    • Multi byte character
    • Drag and Drop files
    • InputMethod Editor (for east asian users)
  • Miscellaneous
    • Supports application window transparency
    • Desktop Notification of the messages emitted nvim

Requirements

See Installing Neovim

Getting Started

Download from Github

Pre-built packages for Windows, MacOS, Linux are found at the Releases page.

Or you can get the latest binary from Github Actions CI. See Actions page.

Install via Package Manager

Windows users can install using scoop:

scoop bucket add extras
scoop install goneovim

or

scoop bucket add versions
scoop install goneovim-nightly

MacOS users can install using homebrew:

brew install --cask goneovim

Note

If you are a macOS user, since this is an unsigned application, you need to execute the following command after obtaining goneovim.app:

xattr -c /path/to/goneovim.app

This will help you avoid the "unknown developer" warning or the "Goneovim is damaged and can't be opened" error.

Usage

See :h goneovim or wiki

Development

  1. Clone this repo and cd into the repo
  2. make deps
  3. make qt_bindings
  4. make test
  5. make app

For more information, see Development

Similar projects

Credits

Screenshots

Workspaces

Smooth Scroll with touchpad

Smooth Scroll for neovim scroll commands

External Float Window, Minimap(experimental)