First commit

This commit is contained in:
powermaker450 2024-08-08 11:49:57 -04:00
commit 296e04d80e
6 changed files with 53 additions and 0 deletions

30
alias.zsh Normal file
View file

@ -0,0 +1,30 @@
### My aliases for my Kitty + OhMyZSH combo.
# These aliases go from the very bare basics that will work on any distro, like Kitten integrations,
# to Python and Node Version Manager, then distro specific aliases.
#
#
## Kitty
alias kitten="kitty +kitten"
alias ssh="kitten ssh"
#
#
## Python UV
alias pip="uv pip"
alias venv="uv venv"
alias suv="source ./.venv/bin/activate"
alias rpip="/usr/bin/pip"
#
#
## NVM
alias loadnvm=". $HOME/.nvm/nvm.sh"
#
#
## Docker, specifically Docker Compose
alias dcd="docker compose down"
alias dcdr="docker compose down --remove-orphans"
alias dcu="docker compose up"
alias dcud="docker compose up -d"
#
#
## Debian, Ubuntu and friends
alias nala="sudo nala"

12
example.zsh Normal file
View file

@ -0,0 +1,12 @@
# Put files in this folder to add your own custom functionality.
# See: https://github.com/ohmyzsh/ohmyzsh/wiki/Customization
#
# Files in the custom/ directory will be:
# - loaded automatically by the init script, in alphabetical order
# - loaded last, after all built-ins in the lib/ directory, to override them
# - ignored by git by default
#
# Example: add custom/shortcuts.zsh for shortcuts to your local projects
#
# brainstormr=~/Projects/development/planetargon/brainstormr
# cd $brainstormr

1
exports.zsh Normal file
View file

@ -0,0 +1 @@
export PATH="/opt/bin:$PATH"

View file

@ -0,0 +1,3 @@
# Add your own custom plugins in the custom/plugins directory. Plugins placed
# here will override ones with the same name in the main plugins directory.
# See: https://github.com/ohmyzsh/ohmyzsh/wiki/Customization#overriding-and-adding-plugins

@ -0,0 +1 @@
Subproject commit c3d4e576c9c86eac62884bd47c01f6faed043fc5

6
themes/example.zsh-theme Normal file
View file

@ -0,0 +1,6 @@
# Put your custom themes in this folder.
# See: https://github.com/ohmyzsh/ohmyzsh/wiki/Customization#overriding-and-adding-themes
#
# Example:
PROMPT="%{$fg[red]%}%n%{$reset_color%}@%{$fg[blue]%}%m %{$fg[yellow]%}%~ %{$reset_color%}%% "