[fix] Add some stuff

This commit is contained in:
Uttarayan Mondal
2023-08-21 15:08:26 +05:30
parent 528e146c82
commit 277676e5d9
5 changed files with 8 additions and 3 deletions

View File

View File

@@ -0,0 +1 @@
export BROWSER="handlr"

View File

@@ -1,7 +1,11 @@
switch (uname) switch (uname)
case "Darwin" case "Darwin"
source ~/.config/fish/conf.d/macos/* for file in (ls ~/.config/fish/conf.d/macos/)
source ~/.config/fish/conf.d/macos/"$file"
end
case "Linux" case "Linux"
source ~/.config/fish/conf.d/linux/* for file in (ls ~/.config/fish/conf.d/linux/)
source ~/.config/fish/conf.d/linux/"$file"
end
end end

View File

@@ -2,7 +2,6 @@ if status is-interactive
macchina macchina
end end
export BROWSER="handlr"
export DYLD_FALLBACK_LIBRARY_PATH="/Library/Developer/CommandLineTools/usr/lib" export DYLD_FALLBACK_LIBRARY_PATH="/Library/Developer/CommandLineTools/usr/lib"
export FZF_DEFAULT_COMMAND="fd --type f --hidden --exclude .git" export FZF_DEFAULT_COMMAND="fd --type f --hidden --exclude .git"
export CARGO_TARGET_DIR="$HOME/.local/share/cargo-target" export CARGO_TARGET_DIR="$HOME/.local/share/cargo-target"

View File

@@ -61,3 +61,4 @@ bind o set status
bind-key -n C-\\ run-shell '~/.config/tmux/scratch' bind-key -n C-\\ run-shell '~/.config/tmux/scratch'
if-shell 'uname | grep -q Darwin' { set -s copy-command 'pbcopy' }