🗑️ remove(nvim): disable some repl providers by default

This commit is contained in:
Sergio Laín 2024-02-18 13:44:37 +01:00
parent 435d6e453c
commit 1df81d9171
No known key found for this signature in database
GPG key ID: 14C9B8080681777B

View file

@ -20,3 +20,8 @@ o.gui_font_face = "JetBrainsMono Nerd Font"
-- Enable EditorConfig integration
o.editorconfig = true
-- Disable some repl providers
for _, provider in ipairs({ "node", "perl", "python3", "ruby" }) do
vim.g["loaded_" .. provider .. "_provider"] = 0
end