Skip to content
This repository was archived by the owner on Jan 17, 2024. It is now read-only.

Add nvim-treesitter dependency check #7

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions lua/module-template.lua
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
if not pcall(require, "nvim-treesitter") then
-- TODO: Replace `module-template` with the actual name of your module.
print "module-template requires nvim-treesitter to be installed"
return
end

local queries = require "nvim-treesitter.query"

local M = {}
Expand Down