Udpated zsh and wezterm

This commit is contained in:
2025-03-13 13:25:04 -07:00
parent ea15551800
commit b990b540ab
4 changed files with 235 additions and 0 deletions

19
home_root/.wezterm.lua Normal file
View File

@@ -0,0 +1,19 @@
-- Pull in wezterm API
local wezterm = require("wezterm")
-- This will hold the configuration
local config = wezterm.config_builder()
config.font = wezterm.font("VictorMono Nerd Font")
config.font_size = 18
config.colors = {}
config.window_background_opacity = 0.85
config.macos_window_background_blur = 40
-- Add configration here
config.enable_tab_bar = false
config.window_decorations = "RESIZE"
return config

View File

@@ -45,6 +45,7 @@ setopt hist_ignore_all_dups
setopt hist_save_no_dups
setopt hist_ignore_dups
setopt hist_find_no_dups
setopt hist_verify
# completion styling
zstyle ':completion:*' matcher-list 'm:{a-z}={A-Za-z}'
@@ -97,3 +98,7 @@ eval $(thefuck --alias fk)
zinit light Aloxaf/fzf-tab
source /usr/local/share/zsh-autosuggestions/zsh-autosuggestions.zsh
bindkey '^[[B' history-search-forward
bindkey '^[[A' history-search-backward