Skip to content

Latest commit

 

History

History
44 lines (36 loc) · 1.07 KB

README.md

File metadata and controls

44 lines (36 loc) · 1.07 KB

Diagpop

DiagFloat is a Neovim plugin that enhances your coding experience by displaying diagnostic messages in customizable floating windows

2024-08-24 22-30-10 (1)

Installation

lazy.nvim

return {
  'maxmx03/diagpop.nvim',
  opts = {
    limit = 5,
    hl_group = 'FloatBorder',
    border = 'single', -- single, double, rounded, shadow, none
    relative = 'editor', -- editor, cursor
    -- filter
    severity = nil, -- vim.diagnostic.severity.ERROR | WARN | INFO | HINT
  },
  dependencies = {'nvim-tree/nvim-web-devicons'}
}

vim-plug

Plug 'maxmx03/diagpop.nvim'
Plug 'nvim-tree/nvim-web-devicons'
local diag = require 'diagpop'
diag.setup {
    limit = 5,
    hl_group = 'FloatBorder',
    border = 'single', -- single, double, rounded, shadow, none
    relative = 'editor', -- editor, cursor
    -- filter
    severity = nil, -- vim.diagnostic.severity.ERROR | WARN | INFO | HINT
}