17

我的终端 vim 配置没有加载 ~/.zshrc。zsh 是环境登录shell。这种情况的正确配置是什么?

以下是我已经采取并已删除的一些措施:

set shell=zsh
(使用 zsh 作为 shell 但不获取 rc)

set shellcmdflag=-ci
(所有输出暂停)

cat ~/.zshenv
$ source ~/.zshrc
(打开vim时出现很多错误)

4

3 回答 3

10

从手册:

Commands  are  first  read from /etc/zshenv; this cannot be overridden.

[...]

Commands are then read from $ZDOTDIR/.zshenv. If the shell is a
login shell, commands are read from /etc/zprofile and then 
$ZDOTDIR/.zprofile. Then, if the shell is interactive, 
commands are read from /etc/zshrc and then $ZDOTDIR/.zshrc. Finally,
if the shell is a login shell, /etc/zlogin and $ZDOTDIR/.zlogin are
read.

据我了解,

set shell=zsh\ -i

应该管用。

于 2012-07-10T14:56:13.187 回答
9

接受的答案没有按预期工作。实际的解决方案应该是将别名和其他~/.zshrc内容放入~/.zshenv. 唯一需要的~/.vimrcset shell=zsh没有任何标志。

于 2015-12-02T17:57:59.003 回答
1

我找到了一个方便的解决方案。由于我真正需要的是所有别名,因此我在~/.zshrc文件中添加了一个函数:

function zshalias()
{
  grep "^alias" ~/.zshrc > ~/.zshenv
}

然后执行source ~/.zshrc && zshalias.

在您的 vimrc 中,您只需要:

shell=zsh

然后一切正常,没有暂停 tty 输出!

于 2018-02-10T14:15:44.917 回答