diff --git a/home/aerospace.nix b/home/aerospace.nix index 9a389e2..6f48864 100644 --- a/home/aerospace.nix +++ b/home/aerospace.nix @@ -6,27 +6,17 @@ accordion-padding = 10; default-root-container-layout = "tiles"; default-root-container-orientation = "auto"; - on-focus-monitor-changed = [ "move-mouse monitor-lazy-center" ]; + on-focused-monitor-changed = [ "move-mouse monitor-lazy-center" ]; automatically-unhide-macos-hidden-apps = false; - persistent-workspaces = [ - "1" - "2" - "3" - "4" - "5" - "6" - "7" - "8" - "9" - ]; + # persistent-workspaces = [ "1" "2" "3" "4" "5" "6" "7" "8" "9" ]; - keymapping = { + key-mapping = { preset = "qwerty"; }; gaps = { - inner.horizontal = 0; - inner.vertical = 0; + inner.horizontal = 3; + inner.vertical = 3; outer.left = 3; outer.bottom = 3; outer.top = 3; diff --git a/home/wezterm.lua b/home/wezterm.lua index f369e24..fb9ec1e 100644 --- a/home/wezterm.lua +++ b/home/wezterm.lua @@ -5,7 +5,8 @@ config = wezterm.config_builder() config = { -- Windows automatically_reload_config = true, - enable_tab_bar = false, + use_fancy_tab_bar = true, + hide_tab_bar_if_only_one_tab = true, window_close_confirmation = "NeverPrompt", window_decorations = "RESIZE", -- disable title bar, enable resize default_cursor_style = "BlinkingBar", @@ -23,8 +24,8 @@ config = { }, }, window_padding = { - left = 2, - right = 2, + left = 0, + right = 0, top = 0, bottom = 0, },