From 9b5aee768443aa974060d49908ff7b1ca31cf6ef Mon Sep 17 00:00:00 2001 From: Steffen Rademacker Date: Mon, 2 Oct 2023 13:58:32 +0200 Subject: [PATCH] fixes --- install/{3_vimux.sh => 3_neovim.sh} | 0 install/{4_office.sh => 4_neomutt.sh} | 0 wezterm.lua | 22 ++++++++++++++++++++++ 3 files changed, 22 insertions(+) rename install/{3_vimux.sh => 3_neovim.sh} (100%) rename install/{4_office.sh => 4_neomutt.sh} (100%) diff --git a/install/3_vimux.sh b/install/3_neovim.sh similarity index 100% rename from install/3_vimux.sh rename to install/3_neovim.sh diff --git a/install/4_office.sh b/install/4_neomutt.sh similarity index 100% rename from install/4_office.sh rename to install/4_neomutt.sh diff --git a/wezterm.lua b/wezterm.lua index cf6fce3e..decffbbf 100644 --- a/wezterm.lua +++ b/wezterm.lua @@ -147,6 +147,28 @@ end) wezterm.on('gui-startup', function() local tab, pane, window = mux.spawn_window({}) window:gui_window():maximize() + + -- Set a workspace for coding on a current project + -- Top pane is for the editor, bottom pane is for the build tool + local homeDir = wezterm.home_dir + -- local tab, build_pane, window = mux.spawn_window({ + -- workspace = 'default', + -- cwd = homeDir + -- }) + -- + -- local editor_pane = build_pane:split({ + -- direction = 'Right', + -- size = 0.5, + -- cwd = homeDir, + -- }) + -- + -- build_pane:send_text 'ls -al\n' + -- + -- local tab, pane, window = mux.spawn_window { + -- workspace = 'dev', + -- } + -- + -- mux.set_active_workspace 'default' end) return config