blob: b69fb9dfae20e1975bcd5ddd1ce42a69cea23673 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef NVIM_LUA_TREESITTER_H
#define NVIM_LUA_TREESITTER_H
#include <lauxlib.h>
#include <lua.h>
#include <lualib.h>
#include "tree_sitter/api.h"
#ifdef INCLUDE_GENERATED_DECLARATIONS
# include "lua/treesitter.h.generated.h"
#endif
#endif // NVIM_LUA_TREESITTER_H
|