neovim

Neovim text editor
git clone https://git.dasho.dev/neovim.git
Log | Files | Refs | README

health.lua (103B)


      1 local M = {}
      2 
      3 M.check = function()
      4  vim.health.start('another 1')
      5  vim.health.ok('ok')
      6 end
      7 
      8 return M