From c6bf454a1b93ab084da259d32d3a8a5a5cd75223 Mon Sep 17 00:00:00 2001 From: mo8it Date: Sun, 25 Jun 2023 20:55:56 +0200 Subject: [PATCH] Remove wezterm --- .config/wezterm/wezterm.lua | 52 ------------------------------------- 1 file changed, 52 deletions(-) delete mode 100644 .config/wezterm/wezterm.lua diff --git a/.config/wezterm/wezterm.lua b/.config/wezterm/wezterm.lua deleted file mode 100644 index 2cc0fce..0000000 --- a/.config/wezterm/wezterm.lua +++ /dev/null @@ -1,52 +0,0 @@ -local wezterm = require("wezterm") -local act = wezterm.action -local mux = wezterm.mux - -wezterm.on("gui-startup", function(cmd) - local tab, pane, window = mux.spawn_window({ args = cmd.args }) - window:gui_window():maximize() -end) - -return { - default_prog = { "/home/mo/.cargo/bin/zellij" }, - - disable_default_key_bindings = true, - keys = { - { key = "V", mods = "SHIFT|CTRL", action = act.PasteFrom("Clipboard") }, - { key = "_", mods = "SHIFT|CTRL", action = act.DecreaseFontSize }, - { key = "*", mods = "SHIFT|CTRL", action = act.IncreaseFontSize }, - { key = "=", mods = "SHIFT|CTRL", action = act.ResetFontSize }, - }, - - disable_default_mouse_bindings = true, - mouse_bindings = { - { - event = { Up = { streak = 1, button = "Left" } }, - mods = "SHIFT", - action = act.OpenLinkAtMouseCursor, - }, - }, - - cursor_blink_rate = 0, - - enable_tab_bar = false, - - enable_scroll_bar = false, - scrollback_lines = 0, - - window_decorations = "RESIZE", - window_padding = { - left = "0cell", - right = "0cell", - top = "0cell", - bottom = "0cell", - }, - - audible_bell = "Disabled", - - allow_win32_input_mode = false, - - automatically_reload_config = false, - - check_for_updates = false, -}