dotfiles/.config/fish/config.fish

43 lines
944 B
Fish
Raw Normal View History

2022-10-14 13:46:51 +01:00
if status is-interactive
# Commands to run in interactive sessions can go here
end
bind \cH backward-kill-path-component
bind "[3;5~" kill-word
function config
/usr/bin/git --git-dir=$HOME/dotfiles/ --work-tree=$HOME $argv
end
2022-10-18 15:11:09 +01:00
#Vim mode
fish_vi_key_bindings
2022-10-14 13:46:51 +01:00
function vim
nvim $argv
end
2022-11-23 14:45:22 +00:00
function launch-term
docker exec -it core xterm -bg black -fg white -fa 'DejaVu Sans Mono' -fs 16 -e vcmd -c /tmp/pycore.1/$argv -- /bin/bash
end
2022-10-14 13:46:51 +01:00
function core
xhost +local:root
sudo docker exec -it core core-gui
end
function i
sudo pacman -S $argv
end
2022-10-14 13:46:51 +01:00
2022-11-11 13:10:10 +00:00
function s
sudo pacman -Ss $argv
end
function u
sudo pacman -Syu $argv
end
2022-10-14 13:46:51 +01:00
2022-11-23 14:45:22 +00:00
set PATH /home/afonso/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/bin $PATH
2022-10-14 13:46:51 +01:00
set -q GHCUP_INSTALL_BASE_PREFIX[1]; or set GHCUP_INSTALL_BASE_PREFIX $HOME ; set -gx PATH $HOME/.cabal/bin /home/afonso/.ghcup/bin $PATH # ghcup-env
set PATH $HOME/.local/bin $HOME/.cargo/bin $HOME/.local/bin $PATH