Udpated zsh and wezterm
This commit is contained in:
19
home_root/.wezterm.lua
Normal file
19
home_root/.wezterm.lua
Normal 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
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user