My configurations for the software I use
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Put the column highlight one line over

yemou 464293cd 6ffcb1da

+2 -2
+2 -2
config/kak/kakrc
··· 73 73 evaluate-commands %sh{ 74 74 [ "$1" = add ] && { 75 75 [ "$3" ] && color=$3 || color=default,bright-white 76 - printf '%s\n' "eval addhl window/ column $2 $color" 76 + printf '%s\n' "eval addhl window/ column $(($2 + 1)) $color" 77 77 } 78 78 79 79 [ "$1" = remove ] && { 80 80 [ "$3" ] && color=$3 || color=default,bright-white 81 - printf '%s\n' "eval rmhl window/column_$2_$color" 81 + printf '%s\n' "eval rmhl window/column_$(($2 + 1))_$color" 82 82 } 83 83 } 84 84 }