Compare commits

...

3 commits

Author SHA1 Message Date
f225557bb7
tsm ftw 2023-05-10 01:00:32 -05:00
d5cecf2e77
add forget alias 2023-05-10 01:00:28 -05:00
48d5924e5e
spacing 2023-05-10 00:44:40 -05:00
5 changed files with 6 additions and 3 deletions

View file

@ -20,6 +20,8 @@ bind - split-window -v -c "#{pane_current_path}"
unbind '"' unbind '"'
unbind % unbind %
bind s display-popup -h 60% -w 60% -B -e FZF_DEFAULT_OPTS="${FZF_DEFAULT_OPTS} --height=100%" -E "tsm"
# Set default term to xterm # Set default term to xterm
set -g default-terminal "xterm-256color" set -g default-terminal "xterm-256color"
set-option -ga terminal-overrides ",xterm-256color:Tc" set-option -ga terminal-overrides ",xterm-256color:Tc"
@ -52,7 +54,7 @@ set -g status-right "%b %d %Y %l:%M %p"
set -g status-right-length 60 set -g status-right-length 60
set -g window-status-last-style "fg=${thm_yellow}" set -g window-status-last-style "fg=${thm_yellow}"
# set -g pane-border-lines heavy # old tmux doesn't have this? set -g pane-border-lines heavy
active_marker="#[fg=red,bold] λ " active_marker="#[fg=red,bold] λ "
set -g window-status-current-format "#[bg=${thm_bg}]${active_marker}#[fg=green,bold]#W${active_marker}" set -g window-status-current-format "#[bg=${thm_bg}]${active_marker}#[fg=green,bold]#W${active_marker}"

View file

@ -35,3 +35,4 @@ alias urlencode='python3 -c "import sys, urllib.parse as ul; \
alias zdot='cd ${ZDOTDIR:-~}' alias zdot='cd ${ZDOTDIR:-~}'
alias dots='cd ${DOTFILES_DIR:-~/.dotfiles}' alias dots='cd ${DOTFILES_DIR:-~/.dotfiles}'
alias today="date +'%Y-%m-%d'" alias today="date +'%Y-%m-%d'"
alias dots-drop='chezmoi forget --interactive $(chezmoi managed -p absolute | fzf)'

View file

@ -7,3 +7,4 @@ if [ -z "$1" ]; then
else else
tmux new-session -s "$1" tmux new-session -s "$1"
fi fi

View file

@ -1,6 +1,5 @@
#!/usr/bin/env zsh #!/usr/bin/env zsh
export GPG_TTY=$(tty) export GPG_TTY=$(tty)
gpgconf --launch gpg-agent gpgconf --launch gpg-agent

View file

@ -1,4 +1,4 @@
# Dotfile Todo's # Dotfile Todo's
- [ ] make a command to 'forget' files using fzf as selector - [x] make a command to 'forget' files using fzf as selector
<!-- i.e. something line chezmoi forget --interactive ~/$(chezmoi managed | fzf) --> <!-- i.e. something line chezmoi forget --interactive ~/$(chezmoi managed | fzf) -->