]> git.madduck.net Git - etc/zsh.git/blob - .zsh/zshrc/05-oh-my-zsh.disabled

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

All patches and comments are welcome. Please squash your changes to logical commits before using git-format-patch and git-send-email to patches@git.madduck.net. If you'd read over the Git project's submission guidelines and adhered to them, I'd be especially grateful.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

Overhaul of the entire config. Yay for big diffs.
[etc/zsh.git] / .zsh / zshrc / 05-oh-my-zsh.disabled
1 #
2 # Load Oh My Zsh
3 #
4 # Copyright © 1994–2017 martin f. krafft <madduck@madduck.net>
5 # Released under the terms of the Artistic Licence 2.0
6 #
7 # Source repository: http://git.madduck.net/v/etc/zsh.git
8 #
9
10 declare -g ZSH=$ZDOTDIR/oh-my-zsh
11 declare -g ZSH_CUSTOM=$ZDOTDIR
12
13 declare -g ZSH_THEME="madduck"
14 declare -g DISABLE_AUTO_UPDATE="true"
15
16 declare -g HIST_STAMPS="yyyy-mm-dd"
17
18 # workaround for https://github.com/robbyrussell/oh-my-zsh/issues/5971
19 declare -g ZSH_DISABLE_COMPFIX ZSH_CACHE_DIR config_file custom_config_file SHORT_HOST ZSH_COMPDUMP
20
21 # Uncomment the following line to use case-sensitive completion.
22 # CASE_SENSITIVE="true"
23
24 # Uncomment the following line to use hyphen-insensitive completion. Case
25 # sensitive completion must be off. _ and - will be interchangeable.
26 # HYPHEN_INSENSITIVE="true"
27
28 # Uncomment the following line to disable bi-weekly auto-update checks.
29
30 # Uncomment the following line to change how often to auto-update (in days).
31 # export UPDATE_ZSH_DAYS=13
32
33 # Uncomment the following line to disable colors in ls.
34 # DISABLE_LS_COLORS="true"
35
36 # Uncomment the following line to display red dots whilst waiting for completion.
37 # COMPLETION_WAITING_DOTS="true"
38
39 # Uncomment the following line if you want to disable marking untracked files
40 # under VCS as dirty. This makes repository status check for large repositories
41 # much, much faster.
42 # DISABLE_UNTRACKED_FILES_DIRTY="true"
43
44 # Uncomment the following line if you want to change the command execution time
45 # stamp shown in the history command output.
46 # The optional three formats: "mm/dd/yyyy"|"dd.mm.yyyy"|"yyyy-mm-dd"
47
48 # Which plugins would you like to load? (plugins can be found in ~/.oh-my-zsh/plugins/*)
49 # Custom plugins may be added to ~/.oh-my-zsh/custom/plugins/
50 # Example format: plugins=(rails git textmate ruby lighthouse)
51 # Add wisely, as too many plugins slow down shell startup.
52 # plugins=(git)
53
54 source $ZSH/oh-my-zsh.sh
55
56 # User configuration
57
58 # export MANPATH="/usr/local/man:$MANPATH"
59
60 # You may need to manually set your language environment
61 # export LANG=en_US.UTF-8
62
63 # Preferred editor for local and remote sessions
64 # if [[ -n $SSH_CONNECTION ]]; then
65 #   export EDITOR='vim'
66 # else
67 #   export EDITOR='mvim'
68 # fi
69
70 # Compilation flags
71 # export ARCHFLAGS="-arch x86_64"
72
73 # ssh
74 # export SSH_KEY_PATH="~/.ssh/rsa_id"
75
76 # Set personal aliases, overriding those provided by oh-my-zsh libs,
77 # plugins, and themes. Aliases can be placed here, though oh-my-zsh
78 # users are encouraged to define aliases within the ZSH_CUSTOM folder.
79 # For a full list of active aliases, run `alias`.
80 #
81 # Example aliases
82 # alias zshconfig="mate ~/.zshrc"
83 # alias ohmyzsh="mate ~/.oh-my-zsh"
84
85 # vim:ft=zsh