This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Configures your prompt to include branch and ahead (↑) and behind (↓) details | |
# Put this folder in your root folder ~/ next to your .zshrc | |
setopt prompt_subst | |
autoload -Uz vcs_info | |
zstyle ':vcs_info:*' enable git | |
zstyle ':vcs_info:*' formats \ | |
'%F{5}[%F{2}%b%F{5}] %F{2}%c%F{3}%u%f' | |
# Add up/down arrows after branch name, if there are changes to pull/to push |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#js-pjax-container > div > div > div > div.flex-shrink-0.col-12.col-md-9.mb-4.mb-md-0 > div > div.container-lg.p-responsive.js-pinned-items-reorder-container.clearfix > div.js-pinned-items-reorder-container { | |
display: none; | |
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
div.active-release-details-container.flex.flex-column.active-releases-name-column { | |
max-width: 300px; | |
} | |
div.env-summary-node-new-plat .node-content { | |
width: unset ; | |
} | |
table.active-releases-details-list.bolt-table.bolt-list.body-m.relative.scroll-hidden { | |
table-layout: auto; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$userPath = $env:USERPROFILE | |
$pathExclusions = New-Object System.Collections.ArrayList | |
$processExclusions = New-Object System.Collections.ArrayList | |
$pathExclusions.Add('C:\Windows\Microsoft.NET') > $null | |
$pathExclusions.Add('C:\Windows\assembly') > $null | |
$pathExclusions.Add($userPath + '\AppData\Local\Microsoft\VisualStudio') > $null | |
$pathExclusions.Add('C:\ProgramData\Microsoft\VisualStudio\Packages') > $null | |
$pathExclusions.Add('C:\Program Files (x86)\MSBuild') > $null | |
$pathExclusions.Add('C:\Program Files\Microsoft Visual Studio\2022') > $null |