Last active
October 30, 2019 08:27
-
-
Save deafmute1/1046ac8b09f86599d7a0ba6cf5572ffb to your computer and use it in GitHub Desktop.
.zshrc on turnip
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
# Path to your oh-my-zsh installation. | |
export ZSH="/root/.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, | |
ZSH_THEME="random" | |
# Set list of themes to pick from when loading at random | |
ZSH_THEME_RANDOM_CANDIDATES=(crcandy avit bira kphoen xiong-chiamiov xiong-chiamiov-plus rkj-repos gnzh funky darkblood bira agnoster ys) | |
# Uncomment the following line to use case-sensitive completion. | |
# CASE_SENSITIVE="true" | |
# Uncomment the following line to use hyphen-insensitive completion. | |
# Case-sensitive completion must be off. _ and - will be interchangeable. | |
# HYPHEN_INSENSITIVE="true" | |
# Uncomment the following line to disable bi-weekly auto-update checks. | |
# DISABLE_AUTO_UPDATE="true" | |
# Uncomment the following line to automatically update without prompting. | |
# DISABLE_UPDATE_PROMPT="true" | |
# Uncomment the following line to change how often to auto-update (in days). | |
# export UPDATE_ZSH_DAYS=13 | |
# Uncomment the following line if pasting URLs and other text is messed up. | |
# DISABLE_MAGIC_FUNCTIONS=true | |
# Uncomment the following line to disable colors in ls. | |
# DISABLE_LS_COLORS="true" | |
# Uncomment the following line to disable auto-setting terminal title. | |
# DISABLE_AUTO_TITLE="true" | |
# Uncomment the following line to enable command auto-correction. | |
# ENABLE_CORRECTION="true" | |
# Uncomment the following line to display red dots whilst waiting for completion. | |
COMPLETION_WAITING_DOTS="true" | |
# Uncomment the following line if you want to change the command execution time stamp shown in the history command output. | |
# "mm/dd/yyyy"|"dd.mm.yyyy"|"yyyy-mm-dd" see 'man strftime' for details. | |
# HIST_STAMPS="mm/dd/yyyy" | |
# 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/ | |
# Example format: plugins=(rails git textmate ruby lighthouse) | |
plugins=(git zsh-autosuggestions zsh-syntax-highlighting) | |
source $ZSH/oh-my-zsh.sh | |
# User configuration | |
# export MANPATH="/usr/local/man:$MANPATH" | |
# You may need to manually set your language environment | |
# export LANG=en_US.UTF-8 | |
#enable mail notifications | |
MAILCHECK="true" | |
# History in cache directory: | |
HISTSIZE=10000 | |
SAVEHIST=10000 | |
HISTFILE=~/.cache/zsh/history | |
# Load aliases and shortcuts if existent. | |
[ -f "$HOME/.config/shortcutrc" ] && source "$HOME/.config/shortcutrc" | |
[ -f "$HOME/.config/aliasrc" ] && source "$HOME/.config/aliasrc" | |
# Use fff to switch directories wih function ff | |
ff() { | |
fff "$@" | |
cd "$(cat "${XDG_CACHE_HOME:=${HOME}/.cache}/fff/.fff_d")" | |
} | |
eval `dircolors /root/.dir_colors` | |
pfetch | |
systemctl --failed --all | head -n -7 | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment