ACCC1380 commited on
Commit
c0fa936
1 Parent(s): 99b73e1

Upload .zshrc with huggingface_hub

Browse files
Files changed (1) hide show
  1. .zshrc +115 -0
.zshrc ADDED
@@ -0,0 +1,115 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Set the encoding for SSH since ssh can't inherit the ENV
2
+ export LC_ALL=C.UTF-8
3
+ export LANG=C.UTF-8
4
+
5
+ # Set HOME
6
+ export HOME="/teamspace/studios/this_studio"
7
+
8
+ # Path to your oh-my-zsh installation.
9
+ export ZSH=$HOME/.oh-my-zsh
10
+
11
+ # Set auto-completion dumpfile location.
12
+ export ZSH_COMPDUMP="/settings/.zcompdump-${HOST}"
13
+
14
+ # Don't care about permissions on autocomplete files
15
+ ZSH_DISABLE_COMPFIX=true
16
+
17
+ # Set name of the theme to load --- if set to "random", it will
18
+ # load a random theme each time oh-my-zsh is loaded, in which case,
19
+ # to know which specific one was loaded, run: echo $RANDOM_THEME
20
+ # See https://github.com/ohmyzsh/ohmyzsh/wiki/Themes
21
+ ZSH_THEME="robbyrussell"
22
+
23
+ # Set list of themes to pick from when loading at random
24
+ # Setting this variable when ZSH_THEME=random will cause zsh to load
25
+ # a theme from this variable instead of looking in $ZSH/themes/
26
+ # If set to an empty array, this variable will have no effect.
27
+ # ZSH_THEME_RANDOM_CANDIDATES=( "robbyrussell" "agnoster" )
28
+
29
+ # Uncomment the following line to use case-sensitive completion.
30
+ # CASE_SENSITIVE="true"
31
+
32
+ # Uncomment the following line to use hyphen-insensitive completion.
33
+ # Case-sensitive completion must be off. _ and - will be interchangeable.
34
+ # HYPHEN_INSENSITIVE="true"
35
+
36
+ # Uncomment one of the following lines to change the auto-update behavior
37
+ # zstyle ':omz:update' mode disabled # disable automatic updates
38
+ # zstyle ':omz:update' mode auto # update automatically without asking
39
+ # zstyle ':omz:update' mode reminder # just remind me to update when it's time
40
+
41
+ # Uncomment the following line to change how often to auto-update (in days).
42
+ # zstyle ':omz:update' frequency 13
43
+
44
+ # Uncomment the following line if pasting URLs and other text is messed up.
45
+ # DISABLE_MAGIC_FUNCTIONS="true"
46
+
47
+ # Uncomment the following line to disable colors in ls.
48
+ # DISABLE_LS_COLORS="true"
49
+
50
+ # Uncomment the following line to disable auto-setting terminal title.
51
+ # DISABLE_AUTO_TITLE="true"
52
+
53
+ # Uncomment the following line to enable command auto-correction.
54
+ # ENABLE_CORRECTION="true"
55
+
56
+ # Uncomment the following line to display red dots whilst waiting for completion.
57
+ # You can also set it to another string to have that shown instead of the default red dots.
58
+ # e.g. COMPLETION_WAITING_DOTS="%F{yellow}waiting...%f"
59
+ # Caution: this setting can cause issues with multiline prompts in zsh < 5.7.1 (see #5765)
60
+ # COMPLETION_WAITING_DOTS="true"
61
+
62
+ # Uncomment the following line if you want to disable marking untracked files
63
+ # under VCS as dirty. This makes repository status check for large repositories
64
+ # much, much faster.
65
+ DISABLE_UNTRACKED_FILES_DIRTY="true"
66
+
67
+ # Uncomment the following line if you want to change the command execution time
68
+ # stamp shown in the history command output.
69
+ # You can set one of the optional three formats:
70
+ # "mm/dd/yyyy"|"dd.mm.yyyy"|"yyyy-mm-dd"
71
+ # or set a custom format using the strftime function format specifications,
72
+ # see 'man strftime' for details.
73
+ # HIST_STAMPS="mm/dd/yyyy"
74
+
75
+ # Would you like to use another custom folder than $ZSH/custom?
76
+ # ZSH_CUSTOM=/path/to/new-custom-folder
77
+
78
+ # Which plugins would you like to load?
79
+ # Standard plugins can be found in $ZSH/plugins/
80
+ # Custom plugins may be added to $ZSH_CUSTOM/plugins/
81
+ # Example format: plugins=(rails git textmate ruby lighthouse)
82
+ # Add wisely, as too many plugins slow down shell startup.
83
+ plugins=()
84
+
85
+ source $ZSH/oh-my-zsh.sh
86
+
87
+ # User configuration
88
+
89
+ # export MANPATH="/usr/local/man:$MANPATH"
90
+
91
+ # You may need to manually set your language environment
92
+ # export LANG=en_US.UTF-8
93
+
94
+ # Preferred editor for local and remote sessions
95
+ # if [[ -n $SSH_CONNECTION ]]; then
96
+ # export EDITOR='vim'
97
+ # else
98
+ # export EDITOR='mvim'
99
+ # fi
100
+
101
+ # Compilation flags
102
+ # export ARCHFLAGS="-arch x86_64"
103
+
104
+ # Set personal aliases, overriding those provided by oh-my-zsh libs,
105
+ # plugins, and themes. Aliases can be placed here, though oh-my-zsh
106
+ # users are encouraged to define aliases within the ZSH_CUSTOM folder.
107
+ # For a full list of active aliases, run `alias`.
108
+ #
109
+ # Example aliases
110
+ # alias zshconfig="mate ~/.zshrc"
111
+ # alias ohmyzsh="mate ~/.oh-my-zsh"
112
+
113
+ # >>> lightning managed. do not modify >>>
114
+ [ -f /settings/.lightningrc ] && source /settings/.lightningrc zsh
115
+ # <<< lightning managed. do not modify <<<