-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
style: Improve documentation for Shell Scripts
Added comments to define base environment variables in `.zprofile` and categorized aliases in aliasrc. Adjusted an IP address for one alias. Expanded comments in shell libraries to indicate work in progress and improved function documentation style for readability.
- Loading branch information
Showing
7 changed files
with
21 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,5 @@ | ||
# Defined base environment variables for the zsh shell terminal. | ||
|
||
# Default | ||
export EDITOR="nvim" | ||
export ZDOTDIR="$HOME/.config/zsh" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
# Aliases definition | ||
# Defined base aliases for the zsh shell terminal. | ||
|
||
# Hosts | ||
alias rpi0="ssh [email protected]" | ||
alias rpi1="ssh [email protected]" | ||
alias rpi2="ssh [email protected]" | ||
|
@@ -8,12 +9,14 @@ alias rpi4="ssh [email protected]" | |
alias rpi5="ssh [email protected]" | ||
alias rpi6="ssh [email protected]" | ||
alias rpi7="ssh [email protected]" | ||
alias rpi8="ssh [email protected].111" | ||
alias rpi8="ssh [email protected].11" | ||
alias jet1="ssh [email protected]" | ||
alias jet2="ssh [email protected]" | ||
alias macb="ssh [email protected]" | ||
|
||
# Kubernetes | ||
alias k="kubectl" | ||
|
||
# Editor | ||
alias vi="nvim" | ||
alias vim="nvim" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters