Parcourir la source

Fix tmux setup.

cray
Mitch Tishmack il y a 11 ans
Parent
révision
110a202efc
4 fichiers modifiés avec 5 ajouts et 3 suppressions
  1. +3
    -0
      Makefile
  2. +0
    -1
      common/.profile.d/99-alias.sh
  3. +1
    -1
      tmux/.profile.d/20-functions-tmux.sh
  4. +1
    -1
      tmux/.profile.d/99-alias-tmux.sh

+ 3
- 0
Makefile Voir le fichier

@@ -50,6 +50,9 @@ ruby:
zsh:
$(STOW) $(STOWOPTS) zsh

tmux:
$(STOW) $(STOWOPTS) tmux

vim:
$(STOW) $(STOWOPTS) vim



+ 0
- 1
common/.profile.d/99-alias.sh Voir le fichier

@@ -6,7 +6,6 @@ alias a=ag
alias n=noglob
alias l=ls
alias L='ls -dal'
alias tl='tmux ls'
alias cleandir="find . -type f \( -name '*~' -o -name '#*#' -o -name '.*~' -o -name '.#*#' -o -name 'core' -o -name 'dead.letter*' \) | grep -v auto-save-list | xargs -t rm"
which less > /dev/null 2>&1
[ $? = 0 ] && alias T='less -f +F' || alias T='tail -f'

+ 1
- 1
tmux/.profile.d/20-functions-tmux.sh Voir le fichier

@@ -1,5 +1,5 @@
# tmux/.profile.d/20-functions-tmux.sh
t
t()
{
if [ -z "$1" ]; then
echo "Supply a tmux session name to connect to/create"


+ 1
- 1
tmux/.profile.d/99-alias-tmux.sh Voir le fichier

@@ -1,2 +1,2 @@
# tmux/.profile.d/99-alias-tmux.sh
alias tls='tmux ls'
alias tl='tmux ls'

Chargement…
Annuler
Enregistrer