aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/wezterm/.config
diff options
context:
space:
mode:
authorToby Vincent <tobyv@tobyvin.dev>2024-05-28 15:27:15 -0500
committerToby Vincent <tobyv@tobyvin.dev>2024-05-28 15:27:15 -0500
commitdd6cfb63ad85d0164cbe4ac04f7aea9f6a842f02 (patch)
tree5bc45394b9192771bcc85fa59b8aab4b8a4301bb /wezterm/.config
parent1527172edf1f7d65095a5c2268947c16ed905d18 (diff)
feat!: remove unused configs and cleanup paths
Diffstat (limited to 'wezterm/.config')
-rw-r--r--wezterm/.config/wezterm/wezterm.lua37
1 files changed, 0 insertions, 37 deletions
diff --git a/wezterm/.config/wezterm/wezterm.lua b/wezterm/.config/wezterm/wezterm.lua
deleted file mode 100644
index 84c908a..0000000
--- a/wezterm/.config/wezterm/wezterm.lua
+++ /dev/null
@@ -1,37 +0,0 @@
-local wezterm = require("wezterm")
-
-if wezterm.target_triple == "x86_64-pc-windows-msvc" then
- local is_win = true
-end
-
-local config = {
- default_prog = {
- "/usr/bin/zsh",
- "-l",
- "-c",
- "tmux new -As home",
- },
-
- enable_tab_bar = false,
- color_scheme = "Gruvbox dark, hard (base16)",
- window_padding = {
- left = 0,
- right = 0,
- top = 0,
- bottom = 0,
- },
-
- window_background_opacity = 0.9,
- font = wezterm.font_with_fallback({ "FiraCode Nerd Font", "FireCodeNF" }),
- font_size = 11,
-
- -- disable_default_key_bindings = true,
- keys = {
- { key = "-", mods = "CTRL", action = "DecreaseFontSize" },
- { key = "=", mods = "CTRL", action = "IncreaseFontSize" },
- },
-
- alternate_buffer_wheel_scroll_speed = 1,
-}
-
-return config