feat: Moving the linux local specific configuration out of the main wezterm config script to a local only config template, updating the README for its use, updating the deploy script for the new config path, and adding in a local config template including the generic linux fix for xcursor config.

This commit is contained in:
2025-05-21 06:14:27 -05:00
parent 37d2389ed8
commit 8cd0bcbb66
4 changed files with 52 additions and 32 deletions

View File

@@ -22,9 +22,10 @@ then
ln -fs $PWD/tmux.conf $HOME/.tmux.conf
fi
if [ ! -L $HOME/.wezterm.lua ]
if [ ! -L $HOME/.config/wezterm/wezterm.lua ]
then
ln -fs $PWD/wezterm.lua $HOME/.wezterm.lua
mkdir -p $HOME/.config/wezterm
ln -fs $PWD/wezterm.lua $HOME/.config/wezterm/wezterm.lua
fi
if [ ! -L $HOME/.config/nvim/snippets ]