mirror of
https://github.com/ItsDrike/dotfiles.git
synced 2024-11-10 10:39:41 +00:00
8 lines
352 B
Lua
8 lines
352 B
Lua
-- This file is here to allow running `local vim = require("vim")`, which
|
|
-- avoids the hassle of having to ignore vim as undefined-global for lua
|
|
-- language server diagnostics. Another advantage is that it actually allows
|
|
-- us to detect the attributes of vim so we will get suggestions.
|
|
|
|
---@diagnostic disable-next-line:undefined-global
|
|
return vim
|