1
0
Fork 0

nvim bugfix

This commit is contained in:
Luca Bilke 2024-04-16 12:04:43 +02:00
parent f2ae32b8d7
commit 076faf0359
2 changed files with 1 additions and 2 deletions

View File

@ -14,4 +14,3 @@ g.loaded_node_provider = 0
g.loaded_perl_provider = 0
g.loaded_python3_provider = 0
g.loaded_ruby_provider = 0
g.autoformat = false

View File

@ -16,7 +16,7 @@ end
---@param key string
---@return string?
function M.get_secret(key)
local ok, keys = pcall(require, "custom.secrets")
local ok, keys = pcall(require, "config.secrets")
if ok then
return keys[key]
end