自定义我的zsh主题

时间:2017-05-11 20:52:50

标签: themes zsh oh-my-zsh

主题和我想知道我怎样才能让我的➜开始在新行中而不是在$ USER%M和pwd之间:

$(document).ready(function(){
   var scroll_start = 0;
   var startchange = $('body');
   var offset = startchange.offset();
    if (startchange.length){
   $(document).scroll(function() {
      scroll_start = $(this).scrollTop() > 50;
      if(scroll_start > offset.top) {
          $("#nav").css('background-color', 'rgba(35,46,63,1)');
          $("#nav").css('box-shadow', '4px 0px 10px rgba(0,0,0,0.5)');
       } else {
          $('#nav').css('background-color', 'rgba(35,46,63,0)');
          $("#nav").css('box-shadow', '0px 0px 0px rgba(0,0,0,0)');
       }
   });
    }
});

`

2 个答案:

答案 0 :(得分:0)

好吧,我想我已经明白了但是我不确定它是否正确的方式做任何建议都是受欢迎的,所以基本上我把local ret_status="%(?:%{$fg_bold[green]%}➜ :%{$fg_bold[red]%}➜ %s) "PROMPT='%{$fg[white]%}$USER%{$fg[cyan]%}%M %{$fg[yellow]%}$(get_pwd)%{$fg_bold[blue]%}$(git_prompt_info)%{$fg_bold[blue]%} ${ret_status}%{$fg_bold[green]%}%p % %{$reset_color%}'

答案 1 :(得分:0)

您可以在this post中找到有关ZSH NEWLINE选项的答案。