neovim

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

init.lua (188B)


      1 local M = {}
      2 
      3 M.check = function()
      4  vim.health.start('report 1')
      5  vim.health.ok('everything is fine')
      6  vim.health.start('report 2')
      7  vim.health.ok('nothing to see here')
      8 end
      9 
     10 return M