summary refs log tree commit diff
path: root/fish/functions
diff options
context:
space:
mode:
Diffstat (limited to 'fish/functions')
-rw-r--r--fish/functions/fish_prompt.fish6
-rw-r--r--fish/functions/fish_right_prompt.fish2
-rw-r--r--fish/functions/grep.fish5
-rw-r--r--fish/functions/ls.fish10
4 files changed, 0 insertions, 23 deletions
diff --git a/fish/functions/fish_prompt.fish b/fish/functions/fish_prompt.fish
deleted file mode 100644
index eeec7d8..0000000
--- a/fish/functions/fish_prompt.fish
+++ /dev/null
@@ -1,6 +0,0 @@
-function fish_prompt
-    #set_color $fish_color_cwd
-    echo -n (basename $PWD)
-    #set_color normal
-    echo -n ' ) '
-end
diff --git a/fish/functions/fish_right_prompt.fish b/fish/functions/fish_right_prompt.fish
deleted file mode 100644
index c1b019e..0000000
--- a/fish/functions/fish_right_prompt.fish
+++ /dev/null
@@ -1,2 +0,0 @@
-function fish_right_prompt
-end
diff --git a/fish/functions/grep.fish b/fish/functions/grep.fish
deleted file mode 100644
index bf66e8e..0000000
--- a/fish/functions/grep.fish
+++ /dev/null
@@ -1,5 +0,0 @@
-# grep without colour
-
-function grep
-	command grep --color=never $argv
-end
diff --git a/fish/functions/ls.fish b/fish/functions/ls.fish
deleted file mode 100644
index 94fa076..0000000
--- a/fish/functions/ls.fish
+++ /dev/null
@@ -1,10 +0,0 @@
-# ls but do it without colour
-
-function ls --description "List contents of directory"
-	# make ls show */=>@| indicators
-	isatty stdout
-	and set -a opt -F
-
-	# command $__fish_ls_command $__fish_ls_color_opt $opt $argv
-	command ls $opt $argv
-end