Skip to content

RMichelsen/Nvy

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

64 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Nvy

Nvy is a minimal Neovim client for Windows written in C++. It uses DirectWrite to shape and render the grid cells and text.

Configuration

Nvy sets the global vim variable g:nvy = 1 in case you want to specialize your init.vim while using Nvy.

Fonts can be changed by setting the guifont in init.vim, for example: set guifont=Fira\ Code:h24.
Note: you have to specify the font size, e.g. set guifont=Fira\ Code won't work.

Nvy can be started with the following flags:

  • --maximize to start in fullscreen
  • --geometry=<cols>x<rows> to start with a given number of rows and columns, e.g. --geometry=80x25

Extra Features

  • You can use Alt+Enter to toggle fullscreen
  • You can use Ctrl+Mousewheel to zoom

Releases

Releases can be found here

Build & Dependencies

Building should be straight forward, there are no external dependencies.
The only dependency Nvy uses is the excellent MPack library which is compiled alongside the client itself.