From 9ee3a31003942be6f9b42e8dea1e26f2346126c5 Mon Sep 17 00:00:00 2001 From: Wesley Irvin Date: Tue, 13 Jan 2026 17:48:59 -0500 Subject: [PATCH] Release 1.0 We have no release yet and I feel it's time to call a 1.0. This seems as good a place as any to start. Reviewed-on: https://git.wesirvin.com/wesley/dotfiles/pulls/30 --- wezterm/dot-wezterm.lua | 2 +- zsh/dot-zshrc | 30 +++++++++++++++++++++++++++++- 2 files changed, 30 insertions(+), 2 deletions(-) diff --git a/wezterm/dot-wezterm.lua b/wezterm/dot-wezterm.lua index 40b7d4e..70e7323 100644 --- a/wezterm/dot-wezterm.lua +++ b/wezterm/dot-wezterm.lua @@ -4,7 +4,7 @@ local wezterm = require("wezterm") -- This will hold the configuration local config = wezterm.config_builder() -config.color_scheme = 'tokyonight_storm' +config.color_scheme = "tokyonight_storm" config.window_background_opacity = 0.95 config.enable_tab_bar = false config.initial_cols = 205 diff --git a/zsh/dot-zshrc b/zsh/dot-zshrc index d7f09d5..1a4cb41 100644 --- a/zsh/dot-zshrc +++ b/zsh/dot-zshrc @@ -3,7 +3,7 @@ ############### ALIASES #################### # Load bottom with the proper color scheme -alias btm="btm --theme=gruvbox" +alias btm="btm --theme=gruvbox" # Remap ls to use lsd alias ls="lsd" @@ -14,12 +14,40 @@ alias la="lsd -lah" # Replace cat with bat alias cat="bat" +# Alias cd to z for zoxide +alias cd="z" + ############### END ALIASES ############### +############### BEGIN EXPORTS ############# + +# Exporting $HOME/.local/bin for Zed +export PATH=$HOME/.local/bin:$PATH + +# Export my local-progs directory to find executables +export PATH=$HOME/local-progs/:$PATH + +# Pre-configure settings for zsh-vi-mode +function zvm_config() { + ZVM_CURSOR_STYLE_ENABLED=false + ZVM_VI_EDITOR=nvim +} + +############### END EXPORTS ############### + # Add in our fzf integrations for zsh # Comment if you don't want the fzf integration source <(fzf --zsh) +# Enable vi mode for zsh +source $HOME/local-progs/zsh-vi-mode/zsh-vi-mode.plugin.zsh + +# We want to make sure that autocompletions are loaded +autoload -Uz compinit && compinit + +# Initialize zoxide +eval "$(zoxide init zsh)" + # Finally we want to use starship for our prompt # (because rust that's why) eval "$(starship init zsh)" -- 2.49.1