This file contains hidden or 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/zsh | |
| brew_tmux_path="$( brew info tmux | perl -naE '/[*]$/ and say($F[0])' )" | |
| tmux_installed="${${brew_tmux_path//*HEAD-/}%_1}" | |
| tmux_head=$(cd $HOME/git_tree/tmux && git pull &> /dev/null && git ls -1 | awk '{print $1}') | |
| tmux_head_short=${tmux_head:0:7} | |
| if [[ "$tmux_head_short" == "$tmux_installed" ]]; then | |
| update_status="$(tput setaf 33)Already up to date.$(tput sgr0)" | |
| else |
This file contains hidden or 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
| document.querySelectorAll('a[title*=$foo]').forEach(function(item, i) { console.log([item.title, item.href ]); }) |
This file contains hidden or 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
| .markdown-source-view.mod-cm6 .HyperMD-task-line[data-task]:not([data-task=" "]) { | |
| text-decoration:none; | |
| color: var(--text-normal); | |
| } | |
| .markdown-preview-view ul > li.task-list-item.is-checked { | |
| text-decoration:none; | |
| color:var(--text-normal); | |
| } |
This file contains hidden or 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
| " inspired by https://stackoverflow.com/a/69141482 | |
| " the existing highlight rules for tmux.vim create a bunch of highlight definitions similar to this: | |
| " for i in range(0,255) | |
| " hi tmuxColour$i ctermfg=$i | |
| " ...but in neovim, this just resulted in plain white text. after looking at the output of :highlight | |
| " in vim for a while, it seemed that other entries with guifg definitions were showing the right colour, | |
| " and indeed, the fix was to instead specify RGB values for the guifg style. |
This file contains hidden or 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 bash | |
| for pkg in gmp mpfr icu4c readline; do | |
| PREFIX="$(brew --prefix $pkg)" | |
| CPPFLAGS="$CPPFLAGS -I$PREFIX/include" | |
| LDFLAGS="$LDFLAGS -L$PREFIX/lib" | |
| PKG_CONFIG_PATH="$PKG_CONFIG_PATH:$PREFIX/lib/pkgconfig" | |
| done | |
| export CPPFLAGS LDFLAGS PKG_CONFIG_PATH |
OlderNewer