From 35438bea7591b35d493f85cf36080a8f6b5adedf Mon Sep 17 00:00:00 2001 From: Henrik Hautakoski Date: Sat, 18 Jan 2025 17:26:27 +0100 Subject: [PATCH] nvim: remove _types.lua (not needed anymore) --- nvim/_types.lua | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100644 nvim/_types.lua diff --git a/nvim/_types.lua b/nvim/_types.lua deleted file mode 100644 index 17050cf..0000000 --- a/nvim/_types.lua +++ /dev/null @@ -1,16 +0,0 @@ - --- LuaLS is weird and does not recognize builtin types --- even tho it should. So define them as aliases - - ----@alias nil nil ----@alias any any ----@alias boolean boolean ----@alias string string ----@alias number number ----@alias integer integer ----@alias function function ----@alias table table ----@alias thread thread ----@alias userdata userdata ----@alias lightuserdata lightuserdata