Skip to content

Latest commit

 

History

History
41 lines (33 loc) · 746 Bytes

README.md

File metadata and controls

41 lines (33 loc) · 746 Bytes

Full Visual Line

A simple plugin that highlights whole lines in linewise visual mode (V)

Example Images

Before

Preview Before

After

Preview After

Installation

lazy.nvim

folke/lazy.nvim

{
    '0xAdk/full_visual_line.nvim',
    keys = 'V',
    opts = {},
}
packer.nvim

wbthomason/packer.nvim

use {
    '0xAdk/full_visual_line.nvim',
    config = function ()
        require 'full_visual_line'.setup {}
    end
}