Skip to content

Latest commit

 

History

History
36 lines (29 loc) · 621 Bytes

README.md

File metadata and controls

36 lines (29 loc) · 621 Bytes

Installation

-- Packer
use({
  "pjvds/dynumbers.nvim",
  config = function()
    require("dynumbers").setup()
  end,
})
-- Lazy
{
  "pjvds/dynumbers.nvim",
  event = "VeryLazy"
  config = function()
    require("dynumbers").setup()
  end,
}

Ignore buffer

By default NvimTree and startify buffers are ignored by dynumbers. You can configure the ignore by setting the ignore list when calling setup:

require("dynumbers").setup({
  ignore: { "NvimTree", "startify", "..."}
})