Updated config

This commit is contained in:
2024-02-01 20:59:19 +01:00
parent 8998a54e82
commit 973894cfab
16 changed files with 207 additions and 32 deletions

View File

@ -0,0 +1,2 @@
function fish_greeting
end

View File

@ -0,0 +1,6 @@
function fish_prompt
set_color $fish_color_cwd
echo -n (prompt_pwd)
set_color normal
printf ' '
end

View File

@ -0,0 +1,3 @@
function ll
ls -l $argv
end

View File

@ -0,0 +1,7 @@
function ls
if command -q exa
exa -1 --icons=auto $argv
else
command ls $argv
end
end