directory restructuring
This commit is contained in:
parent
81eb0b5b09
commit
22ae6c5b17
7 changed files with 0 additions and 0 deletions
4
shells/fish/functions/cdl.fish
Normal file
4
shells/fish/functions/cdl.fish
Normal file
|
@ -0,0 +1,4 @@
|
|||
function cdl
|
||||
cd $argv
|
||||
l
|
||||
end
|
7
shells/fish/functions/fish_prompt.fish
Normal file
7
shells/fish/functions/fish_prompt.fish
Normal file
|
@ -0,0 +1,7 @@
|
|||
function fish_prompt --description 'Write out the prompt'
|
||||
if test -z $WINDOW
|
||||
printf '%s%s@%s%s%s%s%s> ' (set_color yellow) (whoami) (set_color purple) (hostname|cut -d . -f 1) (set_color $fish_color_cwd) (prompt_pwd) (set_color normal)
|
||||
else
|
||||
printf '%s%s@%s%s%s(%s)%s%s%s> ' (set_color yellow) (whoami) (set_color purple) (hostname|cut -d . -f 1) (set_color white) (echo $WINDOW) (set_color $fish_color_cwd) (prompt_pwd) (set_color normal)
|
||||
end
|
||||
end
|
3
shells/fish/functions/g.fish
Normal file
3
shells/fish/functions/g.fish
Normal file
|
@ -0,0 +1,3 @@
|
|||
function g
|
||||
git $argv
|
||||
end
|
5
shells/fish/functions/haha.fish
Normal file
5
shells/fish/functions/haha.fish
Normal file
|
@ -0,0 +1,5 @@
|
|||
function haha
|
||||
for x in (seq 10)
|
||||
echo hahahahahahahahahahahahahahahahahaha
|
||||
end
|
||||
end
|
3
shells/fish/functions/vim.fish
Normal file
3
shells/fish/functions/vim.fish
Normal file
|
@ -0,0 +1,3 @@
|
|||
function vim
|
||||
nvim $argv
|
||||
end
|
Loading…
Add table
Add a link
Reference in a new issue