Tagged Questions
The .zshrc file is the configuration file for zsh.
5
votes
1answer
2k views
How can you export your .bashrc to .zshrc?
I am trying to move to zsh from Bash.
I put my .bashrc directly to my .zshrc, and it caused a lot of errors when I try to use Bash again.
How can you export your .bashrc to .zshrc?
4
votes
3answers
462 views
How do zsh ansi colour codes work?
I want to make my hostname in my terminal orange. How do I do that?
3
votes
3answers
828 views
ZSH & RVM woes (rvm-prompt doesn't resolve)
I recently saw the light and changed over to ZSH. I naturally used oh my zsh to configure it, as I'm noobish. So, there are several themes that have an rvm-prompt included and here is were my ...
3
votes
1answer
52 views
Changing Git user on the fly
I'd like to be able to switch the name and email in git, I tried this:
alias setup_diffuser='export GIT_COMMITTER_NAME="Blah" && export GIT_COMMITTER_EMAIL="blah@blah.com" && export ...
3
votes
2answers
284 views
Saving current directory to zsh history
I wanted to achieve the same as asked here http://stackoverflow.com/questions/945288/saving-current-directory-to-bash-history but within zsh shell. I haven't done any zsh trickry before but so far I ...
3
votes
1answer
877 views
bindkey with zsh on Mac
I've been trying to bind keys in zzh on a Mac but am having some trouble. I know I should be Googling this but couldn't find what I need...
I've been trying to bind ctrl-backspace to be an equivalent ...
2
votes
0answers
38 views
How does the matcher-list arguments work in zsh zstyle completion?
I'm trying to configure my ~/.zshrc so code completion on files/dirs work as I need it.
I've found various ressources online on the zstyle completion syntax, and code example but some parts of it are ...
2
votes
1answer
576 views
oh-my-zsh plugins not working
I've just discovered oh-my-zsh, but I can't get it to work. While themes work just perfectly, plugins do not. I have some plugins selected, eg. macports, but neither I get port command completion nor ...
2
votes
1answer
49 views
Avoid recursion in zsh command line
OK, I switched to zsh a few hours ago and I am in a huge config-fooling around spree, but this is likely a too big bite for me:
I'd like to to do a delimiter autopairnig, e.g. type ( and it inserts ...
2
votes
2answers
521 views
zsh alias expansion
Is it possible to configure zsh to expand global aliases during tab completion? For example, I have the common aliases:
alias -g '...'='../..'
alias -g '....'='../../..'
but when I type for ...
2
votes
2answers
156 views
cd -1, -2, -3 etc in Z shell
How do you set up Z-shell so that typing cd - gives you a list of previously visited paths?
cd -1, -2, -3 etc then take you to the directories.
2
votes
2answers
451 views
Zsh alias not working as in bash
I use this alias in my .bashrc but doesn't seem to work in zsh using .zshrc. Other aliases I use are working fine so I know the .zshrc is source other aliases.
alias rubydev3="cd ...
1
vote
1answer
37 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 ...
1
vote
2answers
157 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
vote
1answer
61 views
SVN over a directory that already exists
I've been reading about using a zsh template file on a scientific computing website. I've never used subversion before but am attempting to learn how to do so. Anyhow, they have a repository on Google ...
1
vote
1answer
73 views
“*.foo” shell function
I want to add to my .zshrc function that will perform operations with file that has ".c" suffix. For example,
*.c () {
gcc $0 -o ${0%.*}
}
must perform "gcc foo.c -o foo" when I am entering ...
1
vote
2answers
120 views
Get the `pwd` in an `alias`?
Is there a way I can get the pwd in an alias in my .zshrc file? I'm trying to do something like the following:
alias cleanup="rm -Rf `pwd`/{foo,bar,baz}"
This worked fine in bash; pwd is always the ...
1
vote
0answers
104 views
Zsh: Make a certain set of aliases take precedence in completion suggestions
I have a couple of functions set in my zsh profile which let me save aliases to directories on the fly. It's pretty simple - just adds an alias to cd to the dir to a ~/.dirs file which gets sourced.
...
0
votes
2answers
56 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 ...
0
votes
1answer
40 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
52 views
Is there a 'simple' way to add git information to zsh without using oh-my-zsh? [closed]
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 ...
0
votes
0answers
96 views
ZSH auto-complete screws up command name
When I start doing tab auto-complete of a command, it keeps what I initally typed next to it and the command becomes unreadable. In the example below, I typed 'git che' and hit tab. Once I select ...
0
votes
1answer
84 views
.zshrc function for homebrew
I use the homebrew package manager and the z-shell. I'm trying to implement a function to create a list of available packages that would be accessible to the grep function. Here's what I've got so ...
0
votes
1answer
123 views
ZSH `rvm-prompt` on RHS prompt not refreshing
I have rvm-prompt feeding into my RPrompt, however it is not refreshing between commands: (Larger image)
For example, when I cd from one ruby project to another with an .rvmrc file pointing to a new ...
0
votes
0answers
78 views
Emacs like undo in zsh
I'd like to have the standard Emacs key binding \C-/ for undo also in zsh. Unfortunately, this:
bindkey '^/' undo
does not work (tried also different ways to escape it). The read utility can not ...
0
votes
1answer
139 views
The .zshrc file doesn't seem to be loading
I have a .zshrc file in my Rails root directory, /myapp/.zshrc
I am running the zsh as default on my Mac OSX. However it doesn't seem to be loading the zshrc file when I cd into my app root path. I'm ...
0
votes
3answers
251 views
How can I maintain my last command’s exit-status while resetting my prompt in ZSH?
I’m trying to make an über-simple (single-character) prompt that gives me as much information as possible. Here’s what I have at the moment (had it for ages, can’t remember where I found the ...
0
votes
1answer
246 views
ZSH & Python: python as shell environment variable?
I've been researching setting up ZSH. I've wiped my machine (Mac OS X), installed XCode (Python), ran chsh -s zsh, and installed oh-my-zsh.
The masses seem to rave about Steve Losh's "Prose" theme ...
0
votes
1answer
104 views
How do I fix my zsh prompt now that I've upgraded to snow leopard?
I recently upgraded my system to snow leopard and now my prompt doesn't work properly. I have this line in my .zshrc file:
...