mirror of
https://github.com/xzeldon/dotfiles-wsl2.git
synced 2025-04-08 18:37:07 +03:00
28 lines
568 B
Fish
28 lines
568 B
Fish
# Locale
|
|
export LC_ALL="en_US.UTF-8"
|
|
export LANG="en_US.UTF-8"
|
|
|
|
# Editor
|
|
export EDITOR="nvim"
|
|
|
|
alias subl='"/mnt/c/Program Files/Sublime Text/subl.exe"'
|
|
alias cls="clear"
|
|
alias p="sudo pacman"
|
|
alias vim="nvim"
|
|
|
|
if type -q exa
|
|
alias ll="exa -l -g --icons"
|
|
alias lla="ll -a"
|
|
alias lt="ll --tree --level=2 -a"
|
|
end
|
|
|
|
if status is-interactive
|
|
# Commands to run in interactive sessions can go here
|
|
end
|
|
|
|
# Configure ssh-agent for WSL, see: https://github.com/mame/wsl2-ssh-agent
|
|
if status is-login
|
|
/usr/sbin/wsl2-ssh-agent | source
|
|
end
|
|
|
|
starship init fish | source |