summaryrefslogtreecommitdiff
path: root/pkgs/custom-neovim/config/lua/utilities.lua
diff options
context:
space:
mode:
authortriethyl <triethylammonium@pm.me>2025-08-16 20:20:21 -0400
committertriethyl <triethylammonium@pm.me>2025-08-16 20:20:21 -0400
commit58ceb817bb6ba195d1189160878f318f3bcda0ef (patch)
tree6c17c013c92af8c6e410bb1d4fe3a2557841d0d3 /pkgs/custom-neovim/config/lua/utilities.lua
parent94980b0be13a690128992d98a2ed5db3ab592642 (diff)
neovim: restarted config
Diffstat (limited to 'pkgs/custom-neovim/config/lua/utilities.lua')
-rw-r--r--pkgs/custom-neovim/config/lua/utilities.lua51
1 files changed, 0 insertions, 51 deletions
diff --git a/pkgs/custom-neovim/config/lua/utilities.lua b/pkgs/custom-neovim/config/lua/utilities.lua
deleted file mode 100644
index d2a26b6..0000000
--- a/pkgs/custom-neovim/config/lua/utilities.lua
+++ /dev/null
@@ -1,51 +0,0 @@
-Utils = {}
-
-Utils.mapkey = function(mode, key, desc, action)
- vim.keymap.set(mode, key, action, {noremap = true, silent = true, desc = desc})
-end
-
-Utils.generate_theme_from_highlight_groups = function()
- local get_highlight_colors = function(group)
- local raw_colors = vim.api.nvim_get_hl(0, {name = group})
- local decimal_to_hex = function(decimal_color)
- if decimal_color == nil then return nil end
- return string.format("#%06X", decimal_color)
- end
- return {
- fg = decimal_to_hex(raw_colors.fg),
- bg = decimal_to_hex(raw_colors.bg),
- }
- end
- return {
- modes = {
- normal = get_highlight_colors("MiniStatuslineModeNormal").bg,
- insert = get_highlight_colors("MiniStatuslineModeInsert").bg,
- visual = get_highlight_colors("MiniStatuslineModeVisual").bg,
- replace = get_highlight_colors("MiniStatuslineModeReplace").bg,
- command = get_highlight_colors("MiniStatuslineModeCommand").bg,
- inactive = get_highlight_colors("MiniStatuslineModeInactive").bg,
- },
- text = {
- dark = get_highlight_colors("MiniStatuslineModeNormal").fg,
- light = get_highlight_colors("Normal").fg,
- },
- background = get_highlight_colors("Normal").bg,
- }
-end
-
-Utils.link_highlight = function(first_highlight, second_highlight)
- vim.cmd.highlight {bang = true, "link", first_highlight, second_highlight}
-end
-
-Utils.replaceInTable = function(t, str1, str2)
- for key, value in pairs(t) do
- if type(value) == "string" then
- -- Replace <C-w> with <leader>w in the string
- t[key] = value:gsub(str1, str2)
- elseif type(value) == "table" then
- -- Recursively process nested tables
- Utils.replaceInTable(value, str1, str2)
- end
- end
- return t
-end