add wezterm config (borrowed from isabel)

This commit is contained in:
blahai 2024-10-23 17:45:29 +03:00
parent c85a317bc8
commit 26de676486
No known key found for this signature in database
9 changed files with 1112 additions and 80 deletions

View file

@ -0,0 +1,18 @@
local wezterm = require("wezterm")
local M = {}
M.is_windows = function()
return wezterm.target_triple:find("windows") ~= nil
end
---@return boolean
M.is_linux = function()
return wezterm.target_triple:find("linux") ~= nil
end
---@return boolean
M.is_darwin = function()
return wezterm.target_triple:find("darwin") ~= nil
end
return M