aboutsummaryrefslogtreecommitdiff
path: root/fish
diff options
context:
space:
mode:
authorBlista Kanjo2022-09-01 20:03:35 -0400
committerBlista Kanjo2022-09-01 20:03:35 -0400
commita208eadd1289461bab82dd9554a2316898e7d23d (patch)
treedc52940c6271490f2df6bd58f4edf9ec16f7b7df /fish
parent77051c67db148b81aadaa562dbbbfff9e5f69bef (diff)
refactor: organized the entire repo | feat: added pomodoro aliases inspired by bashbunni
Diffstat (limited to 'fish')
-rw-r--r--fish/config.fish11
-rw-r--r--fish/fish_variables36
l---------fish/functions/br.fish1
-rw-r--r--fish/functions/fish_prompt.fish26
4 files changed, 0 insertions, 74 deletions
diff --git a/fish/config.fish b/fish/config.fish
deleted file mode 100644
index a4b43e5..0000000
--- a/fish/config.fish
+++ /dev/null
@@ -1,11 +0,0 @@
-if status is-interactive
- # Commands to run in interactive sessions can go here
-
- alias ls="lsd --group-dirs first -h --icon-theme unicode -L"
- alias s="cd ~/.local/share/scripts && lsd --group-dirs first -h --icon-theme unicode -L"
- alias d="disown"
- alias c="cal"
- export PF_INFO="ascii title os kernel uptime pkgs memory"
-
-
-end
diff --git a/fish/fish_variables b/fish/fish_variables
deleted file mode 100644
index 7a0382c..0000000
--- a/fish/fish_variables
+++ /dev/null
@@ -1,36 +0,0 @@
-# This file contains fish universal variable definitions.
-# VERSION: 3.0
-SETUVAR __fish_init_2_3_0:\x1d
-SETUVAR __fish_init_3_1_0:\x1d
-SETUVAR __fish_init_3_x:\x1d
-SETUVAR __fish_initialized:3400
-SETUVAR fish_color_autosuggestion:555\x1ebrblack
-SETUVAR fish_color_cancel:\x2dr
-SETUVAR fish_color_command:005fd7
-SETUVAR fish_color_comment:990000
-SETUVAR fish_color_cwd:green
-SETUVAR fish_color_cwd_root:red
-SETUVAR fish_color_end:009900
-SETUVAR fish_color_error:ff0000
-SETUVAR fish_color_escape:00a6b2
-SETUVAR fish_color_history_current:\x2d\x2dbold
-SETUVAR fish_color_host:normal
-SETUVAR fish_color_host_remote:yellow
-SETUVAR fish_color_match:\x2d\x2dbackground\x3dbrblue
-SETUVAR fish_color_normal:normal
-SETUVAR fish_color_operator:00a6b2
-SETUVAR fish_color_param:00afff
-SETUVAR fish_color_quote:999900
-SETUVAR fish_color_redirection:00afff
-SETUVAR fish_color_search_match:bryellow\x1e\x2d\x2dbackground\x3dbrblack
-SETUVAR fish_color_selection:white\x1e\x2d\x2dbold\x1e\x2d\x2dbackground\x3dbrblack
-SETUVAR fish_color_status:red
-SETUVAR fish_color_user:brgreen
-SETUVAR fish_color_valid_path:\x2d\x2dunderline
-SETUVAR fish_greeting:
-SETUVAR fish_key_bindings:fish_default_key_bindings
-SETUVAR fish_pager_color_completion:\x1d
-SETUVAR fish_pager_color_description:B3A06D\x1eyellow
-SETUVAR fish_pager_color_prefix:white\x1e\x2d\x2dbold\x1e\x2d\x2dunderline
-SETUVAR fish_pager_color_progress:brwhite\x1e\x2d\x2dbackground\x3dcyan
-SETUVAR fish_pager_color_selected_background:\x2dr
diff --git a/fish/functions/br.fish b/fish/functions/br.fish
deleted file mode 120000
index db89866..0000000
--- a/fish/functions/br.fish
+++ /dev/null
@@ -1 +0,0 @@
-/home/kylert/.local/share/broot/launcher/fish/br.fish \ No newline at end of file
diff --git a/fish/functions/fish_prompt.fish b/fish/functions/fish_prompt.fish
deleted file mode 100644
index 57ce705..0000000
--- a/fish/functions/fish_prompt.fish
+++ /dev/null
@@ -1,26 +0,0 @@
-set -g __fish_git_prompt_show_informative_status 1
-set -g __fish_git_prompt_hide_untrackedfiles 1
-set -g __fish_git_prompt_showcolorhints 1
-
-set -g __fish_git_prompt_color_branch magenta --bold
-set -g __fish_git_prompt_showupstream "informative"
-set -g __fish_git_prompt_char_upstream_ahead "↑"
-set -g __fish_git_prompt_char_upstream_behind "↓"
-set -g __fish_git_prompt_char_upstream_prefix ""
-
-set -g __fish_git_prompt_char_stagedstate "•"
-set -g __fish_git_prompt_char_dirtystate "+"
-set -g __fish_git_prompt_char_untrackedfiles "…"
-set -g __fish_git_prompt_char_conflictedstate "x"
-set -g __fish_git_prompt_char_cleanstate "✓"
-
-set -g __fish_git_prompt_color_dirtystate blue
-set -g __fish_git_prompt_color_stagedstate yellow
-set -g __fish_git_prompt_color_invalidstate red
-set -g __fish_git_prompt_color_untrackedfiles $fish_color_normal
-set -g __fish_git_prompt_color_cleanstate green --bold
-
-function fish_prompt
- printf '%s%s%s%s $ ' \
- (set_color $fish_color_cwd) (prompt_pwd) (set_color normal) (fish_git_prompt)
-end