zoukankan      html  css  js  c++  java
  • powershell profile

    打开powershell terminal,修改配置code $profile

    # Shows navigable menu of all options when hitting Tab
    Set-PSReadlineKeyHandler -Key Tab -Function MenuComplete
    
    # Autocompletion for arrow keys
    Set-PSReadlineKeyHandler -Key UpArrow -Function HistorySearchBackward
    Set-PSReadlineKeyHandler -Key DownArrow -Function HistorySearchForward
    
    Import-Module posh-git
    Import-Module oh-my-posh
    Set-Theme Paradox
    
    function Get-GitSStatus { & git status }
    New-Alias -Name gs -Value Get-GitSStatus -Force -Option AllScope
    function Get-GitGraph { & git log --graph --abbrev-commit --decorate --format=format:'%C(bold blue)%h%C(reset) - %C(dim white)%aD%C(reset) %C(dim white)(%ar) %C(dim white)- %an%C(reset) %C(reset)%C(bold yellow)%d%C(reset)%n''          %C(white)%s%C(reset)' --all }
    New-Alias -Name gg -Value  Get-GitGraph -Force -Option AllScope
    function Get-GitGraphC { & git log --graph --abbrev-commit --decorate --format=format:'%C(bold blue)%h%C(reset) - %C(dim white)%aD%C(reset) %C(dim white)(%ar) %C(dim white)- %an%C(reset) %C(reset)%C(bold yellow)%d%C(reset)%n''          %C(white)%s%C(reset)' --all -c }
    New-Alias -Name ggc -Value  Get-GitGraphC -Force -Option AllScope
    function Get-GitGraphS { & git log --graph --abbrev-commit --decorate --format=format:'%C(bold blue)%h%C(reset) - %C(dim white)%aD%C(reset) %C(dim white)(%ar) %C(dim white)- %an%C(reset) %C(reset)%C(bold yellow)%d%C(reset)%n''          %C(white)%s%C(reset)' --all --stat }
    New-Alias -Name ggs -Value  Get-GitGraphS -Force -Option AllScope
    
    function Run-gitCheck { & git checkout }
    New-Alias -Name gitck -Value  Run-gitCheck -Force -Option AllScope
    function Run-gitBranch { & git branch }
    New-Alias -Name gitbr -Value  Run-gitBranch -Force -Option AllScope
    
    
  • 相关阅读:
    JSONObject和JSONArray区别及基本用法
    MySQL中UTF8编码的数据在cmd下乱码
    js页面刷新跳转的几种方式及区别
    JS中使用EL表达式
    $.ajax()方法参数详解
    Firefox默认英文修改中文
    配置文件的相对地址和绝对地址设置
    IntelliJ IDEA设置统一编码utf-8
    java.lang.SecurityException: Prohibited package name:
    flask的多个url对应同一个视图函数
  • 原文地址:https://www.cnblogs.com/Searchor/p/13497081.html
Copyright © 2011-2022 走看看