From 94e0023367f7b0b2c972e81d030be17879087c90 Mon Sep 17 00:00:00 2001 From: doryan Date: Sat, 14 Sep 2024 23:08:23 +0400 Subject: [PATCH] feat: remove junk --- NeogitStatus | 0 wezterm/wezterm.lua | 27 --------------------------- 2 files changed, 27 deletions(-) delete mode 100644 NeogitStatus delete mode 100755 wezterm/wezterm.lua diff --git a/NeogitStatus b/NeogitStatus deleted file mode 100644 index e69de29..0000000 diff --git a/wezterm/wezterm.lua b/wezterm/wezterm.lua deleted file mode 100755 index e2c0aae..0000000 --- a/wezterm/wezterm.lua +++ /dev/null @@ -1,27 +0,0 @@ --- Pull in the wezterm API -local wezterm = require 'wezterm' - --- This will hold the configuration. -local config = wezterm.config_builder() - --- This is where you actually apply your config choices - --- For example, changing the color scheme: -config.color_scheme = 'Pnevma' -config.window_padding = { - left = 0, - right = 0, - top = 0, - bottom = 0, -} - -config.animation_fps = 60 -config.default_cursor_style = 'BlinkingBar' - -config.font = wezterm.font ("JetBrainsMono Nerd Font") -config.font = wezterm.font_with_fallback {"JetBrainsMono Nerd Font"} -config.hide_tab_bar_if_only_one_tab = true -config.show_tab_index_in_tab_bar = false -config.adjust_window_size_when_changing_font_size = true --- and finally, return the configuration to wezterm -return config