Skip to content

Latest commit

 

History

History
34 lines (23 loc) · 541 Bytes

README.md

File metadata and controls

34 lines (23 loc) · 541 Bytes

yfix

Neovim plugin to keep the screen centered.

yfix.webm

Configure

The plugin needs to be initialised using

require('yfix').setup()

However you can pass in config options which default to:

{
  -- center y axis in insert mode
  insert_mode = true,
  -- center y axis in normal mode
  normal_mode = true,
}

Installation

Packer

use "vvvvv/yfix"
require("yfix").setup()