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
#!/usr/bin/env sh | |
. "$(dirname -- "$0")/_/husky.sh" | |
echo "pre merge hook" | |
DEVELOP='develop' | |
BRANCH_STAGING='staging-test' | |
if [ `git rev-parse --abbrev-ref HEAD` == $BRANCH_STAGING ]; | |
then | |
MERGE_BRANCH=`echo $GIT_REFLOG_ACTION | awk '{print $2}'` |
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
"workbench.colorCustomizations": { | |
"[Braver's Solarized Dark (themed workbench)]": { | |
"editorCursor.foreground": "#839495" | |
}, | |
}, | |
"editor.tokenColorCustomizations": { | |
"[Braver's Solarized Dark (themed workbench)]": { | |
"textMateRules": [ | |
{ | |
"scope": ["meta.brace.square", "variable"], |
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
#!/bin/bash | |
# Based on: https://gist.github.com/XVilka/8346728 | |
awk -v term_cols="${width:-$(tput cols || echo 80)}" 'BEGIN{ | |
s="/\\"; | |
for (colnum = 0; colnum<term_cols; colnum++) { | |
r = 255-(colnum*255/term_cols); | |
g = (colnum*510/term_cols); | |
b = (colnum*255/term_cols); | |
if (g>255) g = 510-g; |
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
# Oceanic Next for kitty terminal | |
# This work is licensed under the terms of the MIT license. | |
# For a copy, see https://opensource.org/licenses/MIT. | |
background #1b2b34 | |
foreground #d8dee9 | |
cursor #d8dee9 | |
selection_foreground #D8DEE9 |