First commit
This commit is contained in:
commit
296e04d80e
30
alias.zsh
Normal file
30
alias.zsh
Normal 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
12
example.zsh
Normal 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
1
exports.zsh
Normal file
|
@ -0,0 +1 @@
|
|||
export PATH="/opt/bin:$PATH"
|
3
plugins/example/example.plugin.zsh
Normal file
3
plugins/example/example.plugin.zsh
Normal 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
|
1
plugins/zsh-autosuggestions
Submodule
1
plugins/zsh-autosuggestions
Submodule
|
@ -0,0 +1 @@
|
|||
Subproject commit c3d4e576c9c86eac62884bd47c01f6faed043fc5
|
6
themes/example.zsh-theme
Normal file
6
themes/example.zsh-theme
Normal 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%}%% "
|
Loading…
Reference in a new issue