From 25ac096edf6e796ff99885df82e8890e0a31a50d Mon Sep 17 00:00:00 2001 From: Dan Anglin Date: Fri, 7 Oct 2022 01:49:14 +0100 Subject: [PATCH] chore: disable unwanted providers --- neovim/lua/options.lua | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/neovim/lua/options.lua b/neovim/lua/options.lua index c5e9ec5..dd25e4a 100644 --- a/neovim/lua/options.lua +++ b/neovim/lua/options.lua @@ -71,6 +71,11 @@ set.omnifunc = "v:lua.vim.lsp.omnifunc" set.spell = true set.spelllang = "en_gb" +-- Disable unwanted providers +g.loaded_ruby_provider = 0 +g.loaded_perl_provider = 0 +g.loaded_python3_provider = 0 + -- The Statusline local statusline = require("statusline") set.statusline = statusline.output()