Skip to content

wd40bug/Hints.nvim

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 

Repository files navigation

Hints.nvim

Plugin for helping you remember all your keybinds

Install

Lazy.nvim

{'wd40bug/Hints.nvim},

Packer

use {'wd40bug/Hints.nvim'}

Vim-Plug

Plug 'wd40bug/Hints.nvim'

Setup

require("Hints").setup({
  hint_keys = {keys_to_provide_hints_for}
})

Configuration

Optionally you may configure the program with the setup function. Provided is the default configuration

require("Hints").setup( {
  
  max_width = 50, -- number: Maximum width of the hint window. Descriptions that go beyond this will be truncated and can be accessed with `:Hint lhs`

  hint_leader = 'f', -- string: Leader for hints, when pressed before a key in hint_keys will show the hint dialogue for that key

  special_names = { [" "]= "<Space>" }, -- dict: Special names for keys like space which don't display nicely

  hint_keys = {}, -- string[]: Keys to provide hints for

  clear_mapping = "/", -- string: Close hint window on pressing `hint_leader`+`clear_mapping`
  
})

About

Get hints for your Neovim keybindings

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages