Compare commits

..

No commits in common. "8f8089f4df91368d6cbaa5834862be0d37b2852d" and "3b5aebcd939170b971a1d8f44ada597c693658ea" have entirely different histories.

6 changed files with 22 additions and 48 deletions

@ -1 +1 @@
Subproject commit b0788b654c7d3399add949e0d618d97aafb4c280
Subproject commit 0778677dd3037b5416c50b39f7450fc31f30c151

View file

@ -71,10 +71,6 @@ if status is-interactive
# unset
alias unset 'set --erase'
# yazi
# alias y='yazi'
alias yz='yazi'
function nnn_cd
if test -n "$NNN_PIPE"
@ -83,18 +79,7 @@ if status is-interactive
end
trap nnn_cd EXIT
# Change Yazi's CWD to PWD on subshell exit
if [ -n "$YAZI_ID" ]
trap 'ya pub dds-cd --str "$PWD"' EXIT
end
end
# tmux
#if status is-interactive
#and not set -q TMUX
# exec tmux
#end
# pnpm
set -gx PNPM_HOME "/home/eric/.local/share/pnpm"
@ -105,28 +90,28 @@ end
# nnn
alias N="sudo -E nnn"
set -gx LC_COLLATE C
set -gx NNN_PAGER cat
set -gx NNN_OPTS eaA
set -gx LC_COLLATE "C"
set -gx NNN_PAGER "cat"
set -gx NNN_OPTS "eaA"
set -gx NNN_OPENER '/home/eric/.config/nnn/plugins/nuke'
set -gx NNN_PLUG 'd:dragdrop;f:finder;i:!fish -i*;m:mtpmount;o:fzopen;p:preview-tui;r:rsynccp;s:suedit;t:nmount;v:imgview;z:autojump'
set -gx SPLIT v # to split Kitty vertically
set -gx SPLIT 'v' # to split Kitty vertically
set BLK 03
set CHR 03
set DIR 04
set EXE 02
set REG 07
set HARDLINK 05
set SYMLINK 05
set MISSING 08
set ORPHAN 01
set FIFO 06
set SOCK 03
set UNKNOWN 01
set BLK "03"
set CHR "03"
set DIR "04"
set EXE "02"
set REG "07"
set HARDLINK "05"
set SYMLINK "05"
set MISSING "08"
set ORPHAN "01"
set FIFO "06"
set SOCK "03"
set UNKNOWN "01"
set -gx NNN_FCOLORS "$BLK$CHR$DIR$EXE$REG$HARDLINK$SYMLINK$MISSING$ORPHAN$FIFO$SOCK$UNKNOWN"
set -gx NNN_COLORS "#04020301;4231"
set -gx NNN_TERMINAL foot
set -gx NNN_TERMINAL "foot"
# source /opt/miniconda3/etc/fish/conf.d/conda.fish

View file

@ -63,4 +63,4 @@ SETUVAR fish_pager_color_selected_background:\x1d
SETUVAR fish_pager_color_selected_completion:\x1d
SETUVAR fish_pager_color_selected_description:\x1d
SETUVAR fish_pager_color_selected_prefix:\x1d
SETUVAR fish_user_paths:/home/eric/\x2elocal/share/cargo/bin\x1e/home/eric/\x2elocal/share/dotnet/\x2edotnet/tools\x1e/home/eric/\x2econfig/emacs/bin\x1e/home/eric/\x2enix\x2dprofile/bin\x1e/home/eric/\x2eemacs\x2ed/bin\x1e/home/eric/\x2elocal/bin\x1e/home/eric/\x2elocal/share/pnpm\x1e/home/eric/\x2espicetify\x1e/opt/rocm/bin\x1e/home/eric/\x2ebun/bin\x1e/usr/bin\x1e/usr/sbin\x1e/usr/local/bin\x1e/usr/local/sbin
SETUVAR fish_user_paths:/home/eric/\x2enix\x2dprofile/bin\x1e/home/eric/\x2eemacs\x2ed/bin\x1e/home/eric/\x2elocal/bin\x1e/home/eric/\x2elocal/share/pnpm\x1e/home/eric/\x2espicetify\x1e/opt/rocm/bin\x1e/home/eric/\x2ebun/bin\x1e/usr/bin\x1e/usr/sbin\x1e/usr/local/bin\x1e/usr/local/sbin

View file

@ -1,3 +0,0 @@
function fish_greeting
catnap
end

View file

@ -27,7 +27,7 @@ function n --wraps nnn --description 'support nnn quit and change directory'
# The command function allows one to alias this function to `nnn` without
# making an infinitely recursive alias
command nnn -P p $argv
command nnn $argv
if test -e $NNN_TMPFILE
source $NNN_TMPFILE

View file

@ -1,8 +0,0 @@
function y
set tmp (mktemp -t "yazi-cwd.XXXXXX")
yazi $argv --cwd-file="$tmp"
if set cwd (command cat -- "$tmp"); and [ -n "$cwd" ]; and [ "$cwd" != "$PWD" ]
builtin cd -- "$cwd"
end
rm -f -- "$tmp"
end