You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

11 lines
279 B

local M = require('module'):new()
function M:boot()
-- If fugitive is loaded this requires an exclusion to
-- prevent conflicts.
if (nukevim.modules:get('plugins'):has('tpope/vim-fugitive')) then
vim.g.EditorConfig_exclude_patterns = { 'fugitive://.*' }
end
end
return M