fix(health): update to upstream changes

The `health` module was moved to `vim.health` in https://github.com/neovim/neovim/pull/18720
This commit is contained in:
Christian Clason 2022-06-02 12:45:54 +02:00 committed by Christian Clason
parent d0a32420ae
commit b922b2c3db

View file

@ -7,7 +7,7 @@ local shell = require "nvim-treesitter.shell_command_selectors"
local install = require "nvim-treesitter.install"
local utils = require "nvim-treesitter.utils"
local health = require "health"
local health = vim.health or require "health"
local M = {}