diff options
author | Luc Sinet <[email protected]> | 2021-07-31 16:12:29 +0200 |
---|---|---|
committer | GitHub <[email protected]> | 2021-07-31 14:12:29 +0000 |
commit | fe5daa722fb75ad85c24936cbb645018bb9d655b (patch) | |
tree | fbba8ec7642555e29a7b611f2dfc0e5a0c107188 /lua/utils/init.lua | |
parent | cf16a2e826774e89d1bfe5812b6f73c3dd049db2 (diff) |
[Feature] Expose lsp config (#1156)
Diffstat (limited to 'lua/utils/init.lua')
-rw-r--r-- | lua/utils/init.lua | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/lua/utils/init.lua b/lua/utils/init.lua index 1685c1ca..a404254b 100644 --- a/lua/utils/init.lua +++ b/lua/utils/init.lua @@ -102,14 +102,6 @@ function utils.check_lsp_client_active(name) return false end -function utils.is_table(t) - return type(t) == "table" -end - -function utils.is_string(t) - return type(t) == "string" -end - --- Extends a list-like table with the unique values of another list-like table. --- --- NOTE: This mutates dst! |