diff --git a/data/wezterm/wezterm.lua b/data/wezterm/wezterm.lua index f12db39..9e5fcaf 100644 --- a/data/wezterm/wezterm.lua +++ b/data/wezterm/wezterm.lua @@ -55,16 +55,6 @@ return { }, }, - -- Don't need auto copy when double click - -- https://github.com/wez/wezterm/discussions/3760 - mouse_bindings = { - { - event = { Up = { streak = 1, button = "Left" } }, - mods = "NONE", - action = wezterm.action.Nop, - }, - }, - use_fancy_tab_bar = false, hide_tab_bar_if_only_one_tab = true, tab_bar_at_bottom = true, diff --git a/data/zsh/top-zshrc b/data/zsh/top-zshrc index e781485..66a1871 100644 --- a/data/zsh/top-zshrc +++ b/data/zsh/top-zshrc @@ -24,9 +24,16 @@ bindkey "^[[1;3D" backward-word # https://github.com/ohmyzsh/ohmyzsh/wiki/Settings#omzupdate-mode zstyle ':omz:update' mode disabled +# https://github.com/ohmyzsh/ohmyzsh/wiki/Settings#hyphen_insensitive +HYPHEN_INSENSITIVE="true" + # https://github.com/ohmyzsh/ohmyzsh/issues/5569 # https://github.com/ohmyzsh/ohmyzsh/wiki/Settings#disable_magic_functions DISABLE_MAGIC_FUNCTIONS="true" + +# https://github.com/ohmyzsh/ohmyzsh/wiki/Settings#disable_ls_colors +DISABLE_LS_COLORS="true" + # https://github.com/ohmyzsh/ohmyzsh/issues/10291 # https://github.com/ohmyzsh/ohmyzsh/wiki/Settings#disable_untracked_files_dirty DISABLE_UNTRACKED_FILES_DIRTY="true"