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
.tooltipped[aria-label*="review approval"] { | |
background-color: green !important; | |
color: white !important; | |
padding-left: 5px; | |
padding-right: 5px; | |
padding-top: 3px; | |
padding-bottom: 3px; | |
border-radius: 5px; | |
} |
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
.tooltipped[aria-label*="review approval"] { | |
background-color:green !important; | |
color: white !important; | |
padding-left: 5px; | |
padding-right: 5px; | |
padding-top: 3px; | |
padding-bottom: 3px; | |
border-radius: 5px; | |
} |
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
Import-Module posh-git | |
Import-Module TabExpansionPlusPlus | |
Import-Module NPMTabCompletion | |
# Set up a simple prompt, adding the git prompt parts inside git repos | |
function global:prompt { | |
$realLASTEXITCODE = $LASTEXITCODE | |
Write-Host($pwd.ProviderPath) -nonewline -ForegroundColor green | |
Write-VcsStatus | |
$global:LASTEXITCODE = $realLASTEXITCODE |
CSS layouts https://flexbox.ninja/
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
conky.config = { | |
background = false, | |
update_interval = 1.5, | |
cpu_avg_samples = 2, | |
net_avg_samples = 2, | |
out_to_console = false, | |
override_utf8_locale = true, | |
double_buffer = true, | |
no_buffers = true, | |
text_buffer_size = 32768, |