Skip to content

Commit bc7d116

Browse files
committed
Disable some unused nvim providers
`:healthcheck` complains about those, and those are not used so we should be fine disabling those
1 parent 1e51e5e commit bc7d116

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

nvim/.config/nvim/init.lua

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,11 @@ vim.opt.list = false
3131
-- disable format-on-save from `ziglang/zig.vim`
3232
vim.g.zig_fmt_parse_errors = 0
3333
vim.g.zig_fmt_autosave = 0
34+
-- disable some unused providers failing when `:checkhealth`
35+
vim.g.loaded_node_provider = 0
36+
vim.g.loaded_python3_provider = 0
37+
vim.g.loaded_perl_provider = 0
38+
vim.g.loaded_ruby_provider = 0
3439
-- quick-open
3540
vim.keymap.set("", "<C-p>", "<cmd>Files<cr>")
3641
-- search buffers

0 commit comments

Comments
 (0)