From 4578afc68a3dd956f40d79c31e043dd8b0be70cc Mon Sep 17 00:00:00 2001 From: jiriks74 Date: Thu, 26 Sep 2024 17:47:22 +0200 Subject: [PATCH] fix(c): remove protection against reloading It's only for plugin configuration files --- nvim/ftplugin/c.lua | 5 ----- 1 file changed, 5 deletions(-) diff --git a/nvim/ftplugin/c.lua b/nvim/ftplugin/c.lua index f20e468..2d609ee 100644 --- a/nvim/ftplugin/c.lua +++ b/nvim/ftplugin/c.lua @@ -1,8 +1,3 @@ -if vim.g.did_load_c_plugin then - return -end -vim.g.did_load_c_plugin = true - -- Exit if the language server isn't available if vim.fn.executable('clangd') ~= 1 then return