mirror of
https://git.disroot.org/FollieHiyuki/dotfiles.git
synced 2024-11-25 16:58:38 -05:00
6 lines
190 B
Fish
6 lines
190 B
Fish
function n2 -d "Start nnn in dual pane (tmux)"
|
|
tmux new-session -d -s nnn -n nnn "nnn -Hc"
|
|
tmux split-window -h "nnn -Hc"
|
|
TERM=screen-256color command tmux attach -t nnn:nnn
|
|
end
|