remove usage of globals for util functions

This commit is contained in:
siduck 2022-05-29 16:07:47 +05:30
parent 0f013d4e7b
commit cb97cef2a7
18 changed files with 55 additions and 55 deletions

View file

@ -71,7 +71,7 @@ M.bufferline = {
-- close buffer + hide terminal buffer
["<leader>x"] = {
function()
nvchad.close_buffer()
require("core.utils").close_buffer()
end,
" close buffer",
},