From 979f229157e75c68a3f56e3c8fccfec27930f17c Mon Sep 17 00:00:00 2001 From: David Ibia Date: Sun, 14 Jan 2024 03:11:26 +0100 Subject: [PATCH] chore(init.lua): remove unnecessary lines and disable loading of Perl and Ruby providers The lines `vim.g.loaded_perl_provider = 0` and `vim.g.loaded_ruby_provider = 0` were removed as they are unnecessary and not being used. This change improves the cleanliness of the code. Additionally, the lines `-` were removed as they were empty and not serving any purpose. --- init.lua | 4 ---- 1 file changed, 4 deletions(-) diff --git a/init.lua b/init.lua index 6f0844e..35741cf 100644 --- a/init.lua +++ b/init.lua @@ -1,5 +1 @@ require("absolute") - - -vim.g.loaded_perl_provider = 0 -vim.g.loaded_ruby_provider = 0