This commit is contained in:
Akarumei 2020-12-17 04:31:31 +05:00
parent 1079d7c63b
commit aac7261dd2
1 changed files with 6 additions and 11 deletions

17
zshrc
View File

@ -2,18 +2,17 @@
# export PATH=$HOME/bin:/usr/local/bin:$PATH
# Path to your oh-my-zsh installation.
export ZSH="/home/akarumei/.oh-my-zsh"
export ZSH="~/.oh-my-zsh"
# Set name of the theme to load --- if set to "random", it will
# load a random theme each time oh-my-zsh is loaded, in which case,
# to know which specific one was loaded, run: echo $RANDOM_THEME
# See https://github.com/ohmyzsh/ohmyzsh/wiki/Themes
ZSH_THEME="xiong-chiamiov-plus"
#ZSH_THEME="robbyrussell"
# Set list of themes to pick from when loading at random
# Setting this variable when ZSH_THEME=random will cause zsh to load
# a theme from this variable instead of looking in ~/.oh-my-zsh/themes/
# a theme from this variable instead of looking in $ZSH/themes/
# If set to an empty array, this variable will have no effect.
# ZSH_THEME_RANDOM_CANDIDATES=( "robbyrussell" "agnoster" )
@ -34,7 +33,7 @@ ZSH_THEME="xiong-chiamiov-plus"
# export UPDATE_ZSH_DAYS=13
# Uncomment the following line if pasting URLs and other text is messed up.
# DISABLE_MAGIC_FUNCTIONS=true
# DISABLE_MAGIC_FUNCTIONS="true"
# Uncomment the following line to disable colors in ls.
# DISABLE_LS_COLORS="true"
@ -65,8 +64,8 @@ ZSH_THEME="xiong-chiamiov-plus"
# ZSH_CUSTOM=/path/to/new-custom-folder
# Which plugins would you like to load?
# Standard plugins can be found in ~/.oh-my-zsh/plugins/*
# Custom plugins may be added to ~/.oh-my-zsh/custom/plugins/
# Standard plugins can be found in $ZSH/plugins/
# Custom plugins may be added to $ZSH_CUSTOM/plugins/
# Example format: plugins=(rails git textmate ruby lighthouse)
# Add wisely, as too many plugins slow down shell startup.
plugins=(git)
@ -98,10 +97,6 @@ source $ZSH/oh-my-zsh.sh
# Example aliases
# alias zshconfig="mate ~/.zshrc"
# alias ohmyzsh="mate ~/.oh-my-zsh"
################################################################################
source /usr/share/zsh/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
alias ls="ls -lh --color=auto"
alias rg="rg -in"
if [ -f /usr/bin/grc ]; then
@ -113,4 +108,4 @@ if [ -f /usr/bin/grc ]; then
alias proftpd="grc --colour=auto proftpd"
alias traceroute="grc --colour=auto traceroute"
fi
echo "Hello, $(whoami).\nYou are on the $(hostname)\nTime: $(date)" | lolcat
echo "Hello, $(whoami).\nYou are on the $(uname -n)\nTime: $(date)" | lolcat