my-nvim-lua/lua/spike/utils/init.lua

141 lines
3.7 KiB
Lua
Raw Normal View History

local autocmd = vim.api.nvim_create_autocmd
local api = vim.api
2023-08-06 12:15:33 +00:00
local opt = vim.opt
local g = vim.g
local M = {}
2022-11-01 22:10:02 +00:00
M["unload_lua_ns"] = function (prefix)
local prefix_with_dot = prefix .. '.'
for key, _ in pairs(package.loaded) do
if key == prefix or key:sub(1, #prefix_with_dot) == prefix_with_dot then
print("removing: ", key)
package.loaded[key] = nil
end
end
end
-- M.unload_lua_ns("core")
M.list_loaded_modules = function ()
local loaded = {}
for k, _ in pairs(package.loaded) do
loaded[#loaded + 1] = k
end
vim.ui.select(loaded, {}, nil)
end
2022-09-25 03:03:21 +00:00
M.reload_theme = function()
require("plenary.reload").reload_module("base46")
require("plenary.reload").reload_module("custom.chadrc")
require("base46").load_theme()
end
2022-11-01 22:10:02 +00:00
M.set_plugin_mappings = function(plugin_name, mapping_opt)
mappings = require("core.utils").load_config().mappings[plugin_name]
mappings.plugin = nil
for mode, mode_values in pairs(mappings) do
local default_opts = vim.tbl_deep_extend("force", { mode = mode }, mapping_opt or {})
for keybind, mapping_info in pairs(mode_values) do
-- merge default + user opts
local opts = vim.tbl_deep_extend("force", default_opts, mapping_info.opts or {})
mapping_info.opts, opts.mode = nil, nil
opts.desc = mapping_info[2]
vim.keymap.set(mode, keybind, mapping_info[1], opts)
end
end
end
2023-01-28 03:01:20 +00:00
-- convert timestamp under cursor in milliseconds to a human readable string
-- @param timestamp in milliseconds
-- @return human readable string
M.human_timestamp = function()
cword = vim.fn.expand('<cword>')
-- make sure cword is a number
local n = tonumber(cword)
if n == nil then return end
local time = os.date("*t", cword / (1000*1000))
format = string.format("%04d-%02d-%02d %02d:%02d:%02d", time.year, time.month, time.day, time.hour, time.min, time.sec)
vim.notify(format, vim.lsp.log_levels.INFO)
end
-- 1663878015759000
-- 1670185951498000
-- M.human_timestamp()
--lazy loads a packer plugin when a file matches {patterns}
---@param patterns table matched patterns
---@param plugin string plugin to load whan pattern is matched
M.lazy_load_module = function(patterns, plugin)
autocmd({"BufRead", "BufNewFile"},{
group = api.nvim_create_augroup("blob42_lazyload_plugin", {}),
callback = function()
local bufname = api.nvim_buf_get_name(0)
for _,pt in ipairs(patterns) do
if vim.fn.fnamemodify(bufname, ":t"):match(pt) then
require("packer").loader(plugin)
end
end
end
})
end
2023-08-06 12:15:33 +00:00
M.togglezen = function()
if g.zenmode then
M.exitzen()
else
M.zenmode(true)
end
end
--- disable all clutter from UI
---@param full? boolean maximum zen
M.zenmode = function(full)
opt.colorcolumn= '0'
opt.signcolumn = 'no'
g.indent_blankline_show_current_context = false
local ok, indent = pcall(require, "indent_blankline")
if ok then
indent.refresh()
end
opt.listchars:remove("eol")
opt.listchars:append("tab: ")
if full then
opt.number = false
opt.relativenumber = false
-- opt.listchars:append("tab: ")
-- opt.listchars:remove("eol")
opt.fillchars:append("eob: ")
end
g.zenmode = true
end
--- cancel zenmode
M.exitzen = function()
opt.colorcolumn= '+0'
opt.signcolumn = 'yes'
g.indent_blankline_show_current_context = true
local ok, indent = pcall(require, "indent_blankline")
if ok then
indent.refresh()
end
opt.listchars:append("eol:↴")
opt.listchars:append("tab: ")
opt.number = true
opt.relativenumber = true
opt.fillchars:append("eob:")
g.zenmode = false
end
return M
2023-01-28 03:01:20 +00:00