utils: load_config: Use filereadable to check if file exists

This commit is contained in:
Akianonymus 2021-08-23 15:15:22 +05:30 committed by siduck76
parent 753f144d3f
commit 9b4b288d01
1 changed files with 1 additions and 1 deletions

View File

@ -169,7 +169,7 @@ M.load_config = function(reload)
-- Make sure the config doesn't break the whole system if user config is not present or in bad state or not a table -- Make sure the config doesn't break the whole system if user config is not present or in bad state or not a table
-- print warning texts if user config file is present -- print warning texts if user config file is present
-- check if the user config is present -- check if the user config is present
if vim.fn.empty(vim.fn.glob(config_file)) < 1 then if vim.fn.filereadable(vim.fn.glob(config_file)) == 1 then
local present, config = pcall(require, config_name) local present, config = pcall(require, config_name)
if present then if present then
-- make sure the returned value is table -- make sure the returned value is table