Updated config
This commit is contained in:
2
.config/fish/functions/fish_greeting.fish
Normal file
2
.config/fish/functions/fish_greeting.fish
Normal file
@ -0,0 +1,2 @@
|
||||
function fish_greeting
|
||||
end
|
6
.config/fish/functions/fish_prompt.fish
Normal file
6
.config/fish/functions/fish_prompt.fish
Normal file
@ -0,0 +1,6 @@
|
||||
function fish_prompt
|
||||
set_color $fish_color_cwd
|
||||
echo -n (prompt_pwd)
|
||||
set_color normal
|
||||
printf ' '
|
||||
end
|
3
.config/fish/functions/ll.fish
Normal file
3
.config/fish/functions/ll.fish
Normal file
@ -0,0 +1,3 @@
|
||||
function ll
|
||||
ls -l $argv
|
||||
end
|
7
.config/fish/functions/ls.fish
Normal file
7
.config/fish/functions/ls.fish
Normal file
@ -0,0 +1,7 @@
|
||||
function ls
|
||||
if command -q exa
|
||||
exa -1 --icons=auto $argv
|
||||
else
|
||||
command ls $argv
|
||||
end
|
||||
end
|
Reference in New Issue
Block a user