The .zshrc file is the configuration file for zsh.

learn more… | top users | synonyms

2
votes
0answers
122 views

using zsh shell to install ruby-2.0.0-195 doesn't work

sorry this is my first time to post my question here. I am currently using zsh shell and I keep having trouble with installing ruby. While I run rvm install ruby-2.0.0-p195, it shows the error message ...
0
votes
1answer
50 views

Variable names in prompt instead of path

How can I prevent my zsh prompt from showing the variable name a path is assigned to instead of the path itself? foo="/some/path" cd "$foo" shows $ ~foo/ in my prompt instead $ /some/path/
0
votes
0answers
29 views

grml's zsh config - multiline command re-echoing

I installed grml's configuration files and something in those files seems to be causing multiline commands to re-echo themselves before executing. For example user@machine ~ % cat << EOF ...
0
votes
2answers
25 views

How to pass a slice of arguments to a command in zsh?

I have this function: find () { case "$1" in package) pacman -Ss ;; file) echo "Find file" ;; *) echo "You cannot find something like this." ;; esac } ...
1
vote
1answer
68 views

Setting zsh PATH not producing desired order

I'm using Homebrew on Mac OS X 10.8.3. Homebrew wants the /usr/local/bin directory earlier in the PATH than /usr/bin, otherwise system-provided programs will be used instead of Homebrew managed ...
0
votes
1answer
82 views

oh-my-zsh config file not loading

I am trying to get ZSH config working correctly on Mac OSX. I installed it using curl: curl -L https://github.com/robbyrussell/oh-my-zsh/raw/master/tools/install.sh | sh. Then I modified my zshrc file ...
0
votes
0answers
24 views

ZSHconfig alias - trying to copy contents of file into clipboard

I want to use a ZSH alias to copy the contents of a text file onto my clipboard so I can paste it into a browser. Here's what my alias is in .zshrc alias directions_home="cat ...
0
votes
0answers
36 views

Completion for Hadoop command in zsh

I love the tab completion feature in zsh. But when I use hadoop command, it seems do not work anymore. So is there any idea to auto-completion for hadoop command in zsh? Many thanks.
1
vote
1answer
43 views

Autocomplete backslashes in zsh

Is there a zsh script that would allow me to auto complete spaces with backslashes? For example: assume there is a folder called "My folder" with a space in between. If I want to get inside, I cd ...
0
votes
1answer
84 views

tmux does not retain $PATH

I am using chruby to manage changing my rubies. I also use tmux. When I change to a different Ruby, chruby updates the PATH environment variable to include the path to the Ruby I want. When I start ...
0
votes
1answer
85 views

zsh: Force single tab completion

I recently switched from bash to zsh. How can I achieve the following tab completion behavior: Enter the first letters, then press TAB. Complete the entry until the first ambiguous letter and ...
1
vote
3answers
216 views

rbenv version display in zsh right-prompt not refreshing

I have the following code in my .zshrc: local ruby_version='' if which rvm-prompt &> /dev/null; then ruby_version="$(rvm-prompt i v g)" else if which rbenv &> /dev/null; then ...
0
votes
2answers
44 views

Executing a script in an alias

I'm trying to alias eclipse to execute eclipse -data $(pwd). However, for some reason adding this to my zshrc doesn't work: alias eclipse="eclipse -data $(pwd)" I can't seem to find the correct ...
0
votes
1answer
196 views

ZSH not recognizing my aliases?

Using iTerm2 with zsh and it isn't recognizing my aliases. Sometimes I have to work in an IDE and can't just easily vim something and the stupid people thought it a good idea to name their ...
0
votes
0answers
100 views

Google Chrome could not connect to localhost:8000 by function in .zshrc

I have the following script in my .zshrc. It opens my default browser. But it gives an error. If I refresh the browser, it displays index.html. It's supposed to display an index.html without ...
1
vote
1answer
78 views

How to write zsh alias for pushing new branch from current local branch?

Right now when i commit and want to push and create remote branch I did: app_folder (some_branch)> git push -u origin some_branch:some_branch Is there a way to write zsh alias ex: gpu which get ...
0
votes
1answer
659 views

oh-my-zsh themes don't show properly (background stays white)

I am trying to figure out why my oh-my-zsh themes don't work properly. The colors show up properly, but background stays white (with black text). below is my /.zshrc file and current path variable: ...
0
votes
1answer
303 views

ZSH RPROMPT weird space?

Here is my ZSH prompt theme function git_prompt_info() { ref=$(git symbolic-ref HEAD 2> /dev/null) || return echo ...
0
votes
1answer
266 views

Adding directory to the path in .zshrc [closed]

I have been on this issue for a couple days now. I use zsh and need to set a directory path so that the command i use will be recognized. Following these steps so far: cd ~ ls -al ls -al shows me ...
0
votes
1answer
263 views

Zsh Mac OSx Mountain Lion vim promt

I am wondering if anybody is able to get the vim prompt working properly using Mac OSx Mountain Lion the latest version. I am able to edit in vim mode on the command line but I have seen with zsh ...
0
votes
1answer
181 views

How can I define custom colors for use in ZSH prompt?

I'm having some difficulty configuring my zsh prompt. Specifically I would like the font to have the color defined by the hex code: #87afdf Currently, I've set up the prompt as follows: ...
1
vote
2answers
67 views

How do I keep functions/variables local to my zshrc?

Any variable that I declare in my zshrc is available in the shell as an evironment variable. I don't want this to happen. I tried putting the variables in a function and setting them as local, but ...
0
votes
1answer
66 views

locate + grep variable in bash function

zsh: 4.3.17 GNU bash: 4.2.24 GNU grep: 2.10 I would like to know what I did wrong in the grep part -> why grep doesn't highlight the results when used inside the .zshrc file, actually it doesn't ...
0
votes
1answer
58 views

Clock in zsh prompt

I have seen a bunch of different zsh prompts but I was wondering how I can add a clock? I want a simple clock, not anything too complex that self updates.
2
votes
1answer
86 views

ZSH auto_vim (like auto_cd)

zsh has a feature (auto_cd) where just typing the directory name will automatically go to (cd) that directory. I'm curious if there would be a way to configure zsh to do something similar with file ...
1
vote
1answer
398 views

How to prevent Tmux from filling up the global PATH variable with duplicated paths?

I'm using Mac OS X, iTerm2, zsh and Tmux via Homebrew. When I start a Terminal session in iTerm2, the global PATH variable looks still fine. But when I open up a Tmux session the PATH variable is ...
0
votes
1answer
115 views

Auto attach to gnu screen on remote host (ssh) only

So I distribute my dotfiles on all my machines. I want to put something like the following in my .zshrc # Autoload screen if we aren't in it. if [[ $STY = '' ]] then screen -xR; fi Which I got ...
0
votes
1answer
106 views

zsh completion difference

I have seen many do this autoload -Uz compinit compinit and others do this autoload -U compinit compinit -i I would like to know the difference. which one should I use?
3
votes
2answers
847 views

Adding an alias for Sublime Text to zshrc

Just have a quick question on how to add an alias for SublimeText to my ZSH. I've been to their site where they tell you how to do it within bash, but I don't understand how to do it within ZSH. It ...
2
votes
1answer
1k views

postgres.app installed but which psql displays /usr/bin/psql and not path entered into zshrc

Having an issue with postgres.app where its installed, its running, but when I enter which psql I then receive "/usr/bin/psql" and not the correct path that postgres.app expects. When I echo my ...
3
votes
1answer
109 views

zsh random color in PS1

My .bashrc PS1 (abridged) is \u\[\e[01;3$(($RANDOM % 8))m\]@\h \w $' With the way bash works, it interpolates the random color after each command so the @ is a different color each time (at least ...
0
votes
1answer
171 views

Why is zsh reading new lines (^M) in ~/.zshrc as commands?

I'm not sure what I did to mess up my zsh configuration but every time I try to run zsh I get the following message followed by the default theme: /Users/danny/.zshrc:3: command not found: ^M ...
3
votes
1answer
614 views

terminal vim not loading .zshrc

My terminal vim configuration is not loading the ~/.zshrc. Zsh is the environment login shell. What is the proper configuration for this situation? Here are some measures I've already taken and since ...
1
vote
0answers
520 views

ZSH and Oh-My-Zsh local environment mapping?

I used Bash Shell for a long time and recently switched to ZSH because of the greatness of the project O-My-Zsh. I have no problems how to use the zsh but setuping the local environment. I am ...
2
votes
1answer
313 views

How to make zsh forward-word behaviour same as in bash/emacs

zsh forward-word acts a bit different from bash/emacs, and I'd like to change that. Instead of description of all differences, let me just show you step by step behaviour of bash. I marked cursor as ...
1
vote
1answer
226 views

How do you share zsh history between multiple machines?

I have a setup I'm pretty happy with for sharing my configuration files between machines, but I find that I often want to search back in zsh (Ctrl + R) and I can't remember which machine I typed the ...
1
vote
1answer
97 views

Defining zsh functions in a loop reassigns pre

I'm trying to make a tool that defines functions in zsh based off of some named directories. Currently I have this: while read line; do p=( `echo $line | egrep -o -e "[^ ]+"` ) alias ...
1
vote
1answer
123 views

reloadding .zshrc generate error with libiconv

I get this error message when i reload my .zshrc dyld: Library not loaded: /usr/local/Cellar/libiconv/1.14/lib/libiconv.2.dylib Referenced from: /usr/local/bin/zsh Reason: Incompatible library ...
0
votes
1answer
639 views

How do I keep my RVM environment from losing it's settings

I installed ZSH today and RVM, I set up Ruby 1.9.3 to be my default. When I type rvm use 1.9.3 --default and then went into my rails project and ran rails s it worked fine. If I close my terminal and ...
0
votes
1answer
283 views

option to get the current working directory

I'm using oh-my-zsh and wanted to write a small plugin which would executes command autoamtically when i switch directories. So for example I will have to some kind of mapping like ...
3
votes
5answers
646 views

How do I source my .zshrc within emacs?

When I launch the emacs GUI, PATH is not set depending on my .zshrc. How do I source my .zshrc to set it correctly? Edit: I'm trying to use swank-clojure but it can't find lein since it's not on the ...
0
votes
1answer
429 views

Zsh bookmark directories with tab completion?

What I want: cd c/ra<tab> completes to ~/code/rails-app and cd c/<tab> shows a list of dirs within ~/code What I currently have: c ra<tab> completes to c rails-app if I have a ...
2
votes
1answer
602 views

Echo all aliases in zsh

Is it possible to force zsh to echo the actual commands referred to by all aliases when they are used? For example, say that I have the following aliases set: # List direcory contents alias lsa='ls ...
4
votes
1answer
893 views

zsh change prompt input color

I want to change the color of the input text in zsh (the text that I type for each command). Example: in user@host> ls ~/ I would want ls ~/ to be yellow to stand out from standard output. I know ...
0
votes
1answer
94 views

Mysterious phantom rm -i alias

I'm using zsh on Mac OS 10.6.8. So, all of a sudden one of my machines asks me for confirmation every time I rm. Frankly, I hate this with an abiding passion. I've never had a problem with rm, and I ...
2
votes
1answer
250 views

ZSH script and prompt profiling?

This answer, "How to profile a bash shell script?", seems to nearly perfectly cover what I'm trying to accomplish here. I currently have some zsh scripts that modify the prompt, however I think some ...
0
votes
2answers
367 views

Source my .zshrc in a bash script

Lets say I have this bash script (test): #!/usr/bin/env bash source ~/.zshrc In my .zshrc, I have the following: autoload -U compinit compinit When I try and run 'bash test' from my terminal ...
1
vote
1answer
628 views

Fix key settings (Home/End/Insert/Delete) in .zshrc when running Zsh in Terminator Terminal Emulator

I'm running Ubuntu 11.04. I installed the Terminator Terminal Emulator 0.95, and Zsh, version 4.3.15. I have (commonly known) problems with my keys inside the Zsh. At least these: Home/End, nothing ...
0
votes
0answers
73 views

Is there a 'simple' way to add git information to zsh without using oh-my-zsh? [duplicate]

Possible Duplicate: To get a prompt which indicates Git-branch in Zsh Is there a 'simple' way to add git information to zsh without using oh-my-zsh? It seems that zsh is more configurable ...
4
votes
3answers
2k views

zsh: Command not found (for $EDITOR)

For whatever reason, zsh doesn't like me setting command-line arguments for my $EDITOR variable, but from what I can tell, it's not supposed to be this way. I've seen people use export EDITOR='open ...

1 2