Compare commits

..

4 Commits

  1. 2
      .config/sway/at14
  2. 14
      .zshrc

2
.config/sway/at14

@ -6,6 +6,8 @@ set $right_disp "Dell Inc. DELL P2723DE G1330N3"
output "Dell Inc. DELL S2721DGF 8SVBP83" pos 0 0 output "Dell Inc. DELL S2721DGF 8SVBP83" pos 0 0
output "Dell Inc. DELL U2715H GH85D66Q08QS" pos 2560 0 output "Dell Inc. DELL U2715H GH85D66Q08QS" pos 2560 0
output "Dell Inc. DELL U2415 7MT017521WUS" pos 0 0
output "Dell Inc. DELL U2415 7MT016CB061L" pos 1920 0
set $chat_workspace 10 set $chat_workspace 10

14
.zshrc

@ -272,6 +272,15 @@ setopt INC_APPEND_HISTORY_TIME
# by default show 3 months of calendar with week number # by default show 3 months of calendar with week number
# but also allow to override it # but also allow to override it
function cal { function cal {
local BSDCALENDAR=$(which -p ncal)
if [[ $# -eq 0 ]]; then
$BSDCALENDAR -3b
return
else
$BSDCALENDAR -b "$@"
return
fi
local CALENDAR=$(which -p cal) local CALENDAR=$(which -p cal)
if [[ $# -eq 0 ]]; then if [[ $# -eq 0 ]]; then
$CALENDAR -m -w3 $CALENDAR -m -w3
@ -297,7 +306,7 @@ function npm {
( (
export COLOR=1 export COLOR=1
export REACT_APP_NO_CLEAR_CONSOLE=1 export REACT_APP_NO_CLEAR_CONSOLE=1
exec /usr/bin/npm $@ | cat exec command npm $@ | cat
) )
} }
@ -322,6 +331,9 @@ export MANWIDTH=80
# make npm gyp faster # make npm gyp faster
export JOBS=8 export JOBS=8
# Disable fzf in kubectx and kubens
export KUBECTX_IGNORE_FZF=1
# under tmux less needs this to support scrolling # under tmux less needs this to support scrolling
if [[ "$TERM" == "" ]]; then if [[ "$TERM" == "" ]]; then
export LESS='--mouse --wheel-lines=3' export LESS='--mouse --wheel-lines=3'

Loading…
Cancel
Save