nvim: Move util to core.util module

Moved all utility functions from their own directory into
the core functionality direcotyr as a single file.
This commit is contained in:
Marty Oehme 2024-06-06 10:39:41 +02:00
parent e939305df3
commit 405af0f020
Signed by: Marty
GPG key ID: EDBF2ED917B2EF6A
11 changed files with 32 additions and 59 deletions

View file

@ -60,7 +60,7 @@ local prose_plugs = {
{
"mickael-menu/zk-nvim",
config = function()
if require("util").is_available("which-key") then
if require("core.util").is_available("which-key") then
local prefix = require("which-key").register
prefix({ ["<leader>n"] = { name = "+notes" } })
prefix({ ["<localleader>n"] = { name = "+note" } })