9 Commits

Author SHA1 Message Date
wesley 2f96f042ba Merge pull request 'Release 1.0' (#31) from main into development (#35)
Reviewed-on: #35
2026-05-15 06:50:13 -04:00
wesley 213042df74 Customized tmux (#32)
Changed out the theme on tmux to one more maintained. Also set wezterm
to open tmux upon launch of the terminal.

Reviewed-on: #32
2026-05-14 21:51:23 -04:00
wesley f2b91c6eb0 Merge branch 'development' into main 2026-01-13 17:51:17 -05:00
wesley 9ee3a31003 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: #30
2026-01-13 17:48:59 -05:00
wesley b1435388ae Misc Changes
Made misc changes to clean up some aliases and added zoxide support.

Reviewed-on: #29
2026-01-13 17:45:12 -05:00
wesley 1214c4f3c8 Merge pull request 'Changed tmux theme to tokyonight storm' (#28) from tmux-theme-storm into main
Reviewed-on: #28
2024-11-17 15:29:47 +00:00
wesley cbbf1ca0f9 Changed tmux theme to tokyonight storm
Changed the tmux theme to the storm variant of tokyonight
2024-11-17 10:28:56 -05:00
wesley d6925ab9cc Merge pull request 'Addition of alias for la' (#27) from la-additon into main
Reviewed-on: #27
2024-11-17 15:27:45 +00:00
wesley 3f1a1c1375 Addition of alias for la
Added an alias for `la` to make sure it is available on all systems.
2024-11-17 10:26:52 -05:00
3 changed files with 47 additions and 5 deletions
+13 -3
View File
@@ -1,11 +1,21 @@
set -g prefix ^A set -g prefix ^A
set -g @plugin 'fabioluciano/tmux-tokyo-night'
set -g @plugin 'tmux-plugins/tpm' set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'tmux-plugins/tmux-sensible' set -g @plugin 'tmux-plugins/tmux-sensible'
set -g @plugin 'janoamaral/tokyo-night-tmux'
# Tokyo Night config
set -g @tokyo-night-tmux_theme 'storm'
set -g @tokyo-night-tmux_show_netspeed 1
set -g @tokyo-night-tmux_netspeed_iface "wlp4s0"
set -g @tokyo-night-tmux_window_id_style dsquare
# Set mouse on so that we can scroll with the mouse
set -g mouse on
# Set status bar to bottom
set -g status-position bottom
set -g @theme_variation 'moon'
set -g @theme_disable_plugins 1
#set -g @theme_plugin_datetime_format '%a %d %b %Y' #set -g @theme_plugin_datetime_format '%a %d %b %Y'
run '~/.tmux/plugins/tpm/tpm' run '~/.tmux/plugins/tpm/tpm'
+2 -1
View File
@@ -4,11 +4,12 @@ local wezterm = require("wezterm")
-- This will hold the configuration -- This will hold the configuration
local config = wezterm.config_builder() local config = wezterm.config_builder()
config.color_scheme = 'tokyonight_storm' config.color_scheme = "tokyonight_storm"
config.window_background_opacity = 0.95 config.window_background_opacity = 0.95
config.enable_tab_bar = false config.enable_tab_bar = false
config.initial_cols = 205 config.initial_cols = 205
config.initial_rows = 45 config.initial_rows = 45
config.font_size = 10 config.font_size = 10
config.default_prog = { "tmux", "new-session", "-A", "-s", "main" }
return config return config
+31
View File
@@ -8,15 +8,46 @@ alias btm="btm --theme=gruvbox"
# Remap ls to use lsd # Remap ls to use lsd
alias ls="lsd" alias ls="lsd"
# Add alias for la to call lsd -lah
alias la="lsd -lah"
# Replace cat with bat # Replace cat with bat
alias cat="bat" alias cat="bat"
# Alias cd to z for zoxide
alias cd="z"
############### END ALIASES ############### ############### 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 # Add in our fzf integrations for zsh
# Comment if you don't want the fzf integration # Comment if you don't want the fzf integration
source <(fzf --zsh) 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 # Finally we want to use starship for our prompt
# (because rust that's why) # (because rust that's why)
eval "$(starship init zsh)" eval "$(starship init zsh)"