Updates to wezterm config and removes lazy-lock.json

This commit is contained in:
2024-03-22 16:40:38 -04:00
parent 55be390f7f
commit 881905f203
3 changed files with 10 additions and 3 deletions

1
.gitignore vendored
View File

@@ -16,3 +16,4 @@ ansible/tmp/*
ansible/collections/* ansible/collections/*
ansible/galaxy_cache/* ansible/galaxy_cache/*
ansible/galaxy_token ansible/galaxy_token
**/lazy-lock.json

View File

@@ -6,12 +6,15 @@ if wezterm.config_builder then
end end
--config.color_scheme = 'rose-pine' --config.color_scheme = 'rose-pine'
--config.color_scheme = 'terafox' --config.color_scheme = 'terafox'
config.color_scheme = 'Catppuccin Mocha'
-- config.colors = { -- config.colors = {
-- background = "#131111" -- background = "#131111"
-- } -- }
config.color_scheme = 'Catppuccin Mocha'
-- Font -- Font
config.font = wezterm.font_with_fallback { config.font = wezterm.font_with_fallback {
'JetBrains Mono', 'JetBrains Mono',
@@ -22,9 +25,11 @@ config.font_size = 16.0
-- Window -- Window
config.adjust_window_size_when_changing_font_size = false config.adjust_window_size_when_changing_font_size = false
config.enable_scroll_bar = false config.enable_scroll_bar = false
config.initial_cols = 150
config.initial_rows= 80
config.window_padding = { config.window_padding = {
left = 0, left = 5,
right = 0, right = 5,
top = 0, top = 0,
bottom = 0 bottom = 0
} }

View File

@@ -79,4 +79,5 @@ export ANSIBLE_HOME="$XDG_CONFIG_HOME/ansible"
# Tmux-Sessionator path. # Tmux-Sessionator path.
export TMUX_SESSIONATOR_PATH="$HOME:$SCRIPTS:$LOCAL_REPOS:$HHE_REPOS:$REPOS:$GH_REPOS:" export TMUX_SESSIONATOR_PATH="$HOME:$SCRIPTS:$LOCAL_REPOS:$HHE_REPOS:$REPOS:$GH_REPOS:"
# TODO: This should be moved to "$XDG_DATA_HOME".
[ -f "$ZDOTDIR/.zshrc-local" ] && source "$ZDOTDIR/.zshrc-local" [ -f "$ZDOTDIR/.zshrc-local" ] && source "$ZDOTDIR/.zshrc-local"