Add fish config, environment variables and aliases

This commit is contained in:
2020-05-31 14:16:51 +02:00
parent 809bd34b89
commit 5e7eec2a36
5 changed files with 276 additions and 0 deletions

18
.config/fish/config.fish Normal file
View File

@ -0,0 +1,18 @@
#!/usr/bin/env fish
#
# fish configuration file
# load prompt theme (robbyrussell)
source "$__fish_config_dir/theme.fish"
# load aliases and environment variables
source "$HOME/.config/environment"
source "$XDG_CONFIG_HOME/aliases"
# settings
#fish_vi_key_bindings # enable vi mode
# If running from tty1 start sway
if test (tty) = "/dev/tty1"
sway-run
end