directory restructuring

This commit is contained in:
Marcel Kapfer (mmk2410) 2017-03-30 15:42:36 +02:00
parent 81eb0b5b09
commit 22ae6c5b17
7 changed files with 0 additions and 0 deletions

View file

@ -0,0 +1,4 @@
function cdl
cd $argv
l
end

View 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

View file

@ -0,0 +1,3 @@
function g
git $argv
end

View file

@ -0,0 +1,5 @@
function haha
for x in (seq 10)
echo hahahahahahahahahahahahahahahahahaha
end
end

View file

@ -0,0 +1,3 @@
function vim
nvim $argv
end