···
1
-
# If you come from bash you might have to change your $PATH.
export PATH=$HOME/bin:$HOME/.local/bin:/usr/local/bin:$PATH
export PATH=$HOME/bin:/usr/local/bin:$PATH:/snap/bin/
export PATH=$HOME/scripts:$PATH
···
# Path to your Oh My Zsh installation.
export ZSH="$HOME/.oh-my-zsh"
9
-
# Set name of the theme to load --- if set to "random", it will
10
-
# load a random theme each time Oh My Zsh is loaded, in which case,
11
-
# to know which specific one was loaded, run: echo $RANDOM_THEME
# See https://github.com/ohmyzsh/ohmyzsh/wiki/Themes
15
-
# Set list of themes to pick from when loading at random
16
-
# Setting this variable when ZSH_THEME=random will cause zsh to load
17
-
# a theme from this variable instead of looking in $ZSH/themes/
18
-
# If set to an empty array, this variable will have no effect.
19
-
# ZSH_THEME_RANDOM_CANDIDATES=( "robbyrussell" "agnoster" )
21
-
# Uncomment the following line to use case-sensitive completion.
22
-
# CASE_SENSITIVE="true"
24
-
# Uncomment the following line to use hyphen-insensitive completion.
25
-
# Case-sensitive completion must be off. _ and - will be interchangeable.
26
-
# HYPHEN_INSENSITIVE="true"
28
-
# Uncomment one of the following lines to change the auto-update behavior
29
-
# zstyle ':omz:update' mode disabled # disable automatic updates
30
-
# zstyle ':omz:update' mode auto # update automatically without asking
31
-
# zstyle ':omz:update' mode reminder # just remind me to update when it's time
33
-
# Uncomment the following line to change how often to auto-update (in days).
34
-
# zstyle ':omz:update' frequency 13
36
-
# Uncomment the following line if pasting URLs and other text is messed up.
37
-
# DISABLE_MAGIC_FUNCTIONS="true"
39
-
# Uncomment the following line to disable colors in ls.
40
-
# DISABLE_LS_COLORS="true"
42
-
# Uncomment the following line to disable auto-setting terminal title.
43
-
# DISABLE_AUTO_TITLE="true"
45
-
# Uncomment the following line to enable command auto-correction.
46
-
# ENABLE_CORRECTION="true"
48
-
# Uncomment the following line to display red dots whilst waiting for completion.
49
-
# You can also set it to another string to have that shown instead of the default red dots.
50
-
# e.g. COMPLETION_WAITING_DOTS="%F{yellow}waiting...%f"
51
-
# Caution: this setting can cause issues with multiline prompts in zsh < 5.7.1 (see #5765)
52
-
# COMPLETION_WAITING_DOTS="true"
54
-
# Uncomment the following line if you want to disable marking untracked files
55
-
# under VCS as dirty. This makes repository status check for large repositories
56
-
# much, much faster.
57
-
# DISABLE_UNTRACKED_FILES_DIRTY="true"
59
-
# Uncomment the following line if you want to change the command execution time stamp shown in the history
60
-
# command output. You can set one of the optional three formats: "mm/dd/yyyy"|"dd.mm.yyyy"|"yyyy-mm-dd" or
61
-
# set a custom format using the strftime function format specifications, see 'man strftime' for details.
62
-
# HIST_STAMPS="mm/dd/yyyy"
64
-
# Would you like to use another custom folder than $ZSH/custom?
65
-
# ZSH_CUSTOM=/path/to/new-custom-folder
67
-
# Which would you like to load?
68
-
# Standard can be found in $ZSH/plugins/
69
-
# Custom may be added to $ZSH_CUSTOM/plugins/
70
-
# Example format: =(rails git textmate ruby lighthouse)
71
-
# Add wisely, as too many slow down shell startup.
···
# export MANPATH="/usr/local/man:$MANPATH"
80
-
# You may need to manually set your language environment
81
-
# export LANG=en_US.UTF-8
# Preferred editor for local and remote sessions
if [[ -n $SSH_CONNECTION ]]; then
···
91
-
# export ARCHFLAGS="-arch $(uname -m)"
93
-
# Set personal aliases, overriding those provided by Oh My Zsh libs,
94
-
# , and themes. Aliases can be placed here, though Oh My Zsh
95
-
# users are encouraged to define aliases within a top-level file in
96
-
# the $ZSH_CUSTOM folder, with .zsh extension. Examples:
97
-
# - $ZSH_CUSTOM/aliases.zsh
98
-
# - $ZSH_CUSTOM/macos.zsh
99
-
# For a full list of active aliases, run `alias`.
alias dotfiles="cd ~/.dotfiles"
···
34
+
alias ls="eza -la --icons"
35
+
alias tree="eza --icons --tree"
alias gl="git log --all --graph --pretty=format:'%C(magenta)%h %C(white) %an %ar%C(auto) %D%n%s%n'"