Compare commits

...

4 Commits

Author SHA1 Message Date
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
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
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
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
2 changed files with 4 additions and 1 deletions

View File

@@ -4,7 +4,7 @@ set -g @plugin 'fabioluciano/tmux-tokyo-night'
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'tmux-plugins/tmux-sensible'
set -g @theme_variation 'moon'
set -g @theme_variation 'storm'
set -g @theme_disable_plugins 1
#set -g @theme_plugin_datetime_format '%a %d %b %Y'

View File

@@ -8,6 +8,9 @@ alias btm="btm --theme=gruvbox"
# Remap ls to use lsd
alias ls="lsd"
# Add alias for la to call lsd -lah
alias la="lsd -lah"
# Replace cat with bat
alias cat="bat"