Submodule Updates
- Update submodules - Change dracula fish theme using new method for updated fish shell
This commit is contained in:
Submodule .config/doom-emacs updated: 9d4d5b756a...e96624926d
Submodule .config/emacs updated: d722459287...c2d700b784
@@ -1,33 +0,0 @@
|
||||
# Dracula Color Palette
|
||||
set -l foreground f8f8f2
|
||||
set -l selection 44475a
|
||||
set -l comment 6272a4
|
||||
set -l red ff5555
|
||||
set -l orange ffb86c
|
||||
set -l yellow f1fa8c
|
||||
set -l green 50fa7b
|
||||
set -l purple bd93f9
|
||||
set -l cyan 8be9fd
|
||||
set -l pink ff79c6
|
||||
|
||||
# Syntax Highlighting Colors
|
||||
set -g fish_color_normal $foreground
|
||||
set -g fish_color_command $cyan
|
||||
set -g fish_color_keyword $pink
|
||||
set -g fish_color_quote $yellow
|
||||
set -g fish_color_redirection $foreground
|
||||
set -g fish_color_end $orange
|
||||
set -g fish_color_error $red
|
||||
set -g fish_color_param $purple
|
||||
set -g fish_color_comment $comment
|
||||
set -g fish_color_selection --background=$selection
|
||||
set -g fish_color_search_match --background=$selection
|
||||
set -g fish_color_operator $green
|
||||
set -g fish_color_escape $pink
|
||||
set -g fish_color_autosuggestion $comment
|
||||
|
||||
# Completion Pager Colors
|
||||
set -g fish_pager_color_progress $comment
|
||||
set -g fish_pager_color_prefix $cyan
|
||||
set -g fish_pager_color_completion $foreground
|
||||
set -g fish_pager_color_description $comment
|
@@ -1,3 +1,5 @@
|
||||
fish_config theme choose "Dracula_Official"
|
||||
|
||||
function fish_greeting
|
||||
clear
|
||||
pokemon-colorscripts -r
|
||||
|
55
.config/fish/themes/Dracula_Official.theme
Normal file
55
.config/fish/themes/Dracula_Official.theme
Normal file
@@ -0,0 +1,55 @@
|
||||
# Dracula Color Palette
|
||||
#
|
||||
# Foreground: f8f8f2
|
||||
# Selection: 44475a
|
||||
# Comment: 6272a4
|
||||
# Red: ff5555
|
||||
# Orange: ffb86c
|
||||
# Yellow: f1fa8c
|
||||
# Green: 50fa7b
|
||||
# Purple: bd93f9
|
||||
# Cyan: 8be9fd
|
||||
# Pink: ff79c6
|
||||
|
||||
# Syntax Highlighting Colors
|
||||
fish_color_normal f8f8f2
|
||||
fish_color_command 8be9fd
|
||||
fish_color_keyword ff79c6
|
||||
fish_color_quote f1fa8c
|
||||
fish_color_redirection f8f8f2
|
||||
fish_color_end ffb86c
|
||||
fish_color_error ff5555
|
||||
fish_color_param bd93f9
|
||||
fish_color_comment 6272a4
|
||||
fish_color_selection --background=44475a
|
||||
fish_color_search_match --background=44475a
|
||||
fish_color_operator 50fa7b
|
||||
fish_color_escape ff79c6
|
||||
fish_color_autosuggestion 6272a4
|
||||
fish_color_cancel ff5555 --reverse
|
||||
fish_color_option ffb86c
|
||||
fish_color_history_current --bold
|
||||
fish_color_status ff5555
|
||||
fish_color_valid_path --underline
|
||||
|
||||
# Default Prompt Colors
|
||||
fish_color_cwd 50fa7b
|
||||
fish_color_cwd_root red
|
||||
fish_color_host bd93f9
|
||||
fish_color_host_remote bd93f9
|
||||
fish_color_user 8be9fd
|
||||
|
||||
# Completion Pager Colors
|
||||
fish_pager_color_progress 6272a4
|
||||
fish_pager_color_background
|
||||
fish_pager_color_prefix 8be9fd
|
||||
fish_pager_color_completion f8f8f2
|
||||
fish_pager_color_description 6272a4
|
||||
fish_pager_color_selected_background --background=44475a
|
||||
fish_pager_color_selected_prefix 8be9fd
|
||||
fish_pager_color_selected_completion f8f8f2
|
||||
fish_pager_color_selected_description 6272a4
|
||||
fish_pager_color_secondary_background
|
||||
fish_pager_color_secondary_prefix 8be9fd
|
||||
fish_pager_color_secondary_completion f8f8f2
|
||||
fish_pager_color_secondary_description 6272a4
|
Submodule .themes/dracula-fish updated: 610147cc38...0e51af5e53
Submodule .themes/dracula-gtk updated: 3a9f544855...9840b6b665
Submodule .themes/dracula-qbittorrent updated: eccdfac871...a9d64acd1f
Submodule .themes/dracula-steam updated: 102d655f38...a184151696
Submodule .vim/pack/themes/start/dracula updated: b9f4f3a169...eb577d47b0
86
README.org
86
README.org
@@ -4515,6 +4515,12 @@ echo "zsh shell"
|
||||
|
||||
*** Fish
|
||||
|
||||
**** Theme Selection
|
||||
|
||||
#+BEGIN_SRC fish :tangle .config/fish/config.fish
|
||||
fish_config theme choose "Dracula_Official"
|
||||
#+END_SRC
|
||||
|
||||
**** Greeting
|
||||
|
||||
#+BEGIN_SRC fish :tangle .config/fish/config.fish
|
||||
@@ -4600,40 +4606,62 @@ starship init fish | source
|
||||
|
||||
**** Dracula Theme
|
||||
|
||||
#+BEGIN_SRC fish :tangle .config/fish/conf.d/dracula.fish
|
||||
#+BEGIN_SRC fish :tangle .config/fish/themes/Dracula_Official.theme
|
||||
# Dracula Color Palette
|
||||
set -l foreground f8f8f2
|
||||
set -l selection 44475a
|
||||
set -l comment 6272a4
|
||||
set -l red ff5555
|
||||
set -l orange ffb86c
|
||||
set -l yellow f1fa8c
|
||||
set -l green 50fa7b
|
||||
set -l purple bd93f9
|
||||
set -l cyan 8be9fd
|
||||
set -l pink ff79c6
|
||||
#
|
||||
# Foreground: f8f8f2
|
||||
# Selection: 44475a
|
||||
# Comment: 6272a4
|
||||
# Red: ff5555
|
||||
# Orange: ffb86c
|
||||
# Yellow: f1fa8c
|
||||
# Green: 50fa7b
|
||||
# Purple: bd93f9
|
||||
# Cyan: 8be9fd
|
||||
# Pink: ff79c6
|
||||
|
||||
# Syntax Highlighting Colors
|
||||
set -g fish_color_normal $foreground
|
||||
set -g fish_color_command $cyan
|
||||
set -g fish_color_keyword $pink
|
||||
set -g fish_color_quote $yellow
|
||||
set -g fish_color_redirection $foreground
|
||||
set -g fish_color_end $orange
|
||||
set -g fish_color_error $red
|
||||
set -g fish_color_param $purple
|
||||
set -g fish_color_comment $comment
|
||||
set -g fish_color_selection --background=$selection
|
||||
set -g fish_color_search_match --background=$selection
|
||||
set -g fish_color_operator $green
|
||||
set -g fish_color_escape $pink
|
||||
set -g fish_color_autosuggestion $comment
|
||||
fish_color_normal f8f8f2
|
||||
fish_color_command 8be9fd
|
||||
fish_color_keyword ff79c6
|
||||
fish_color_quote f1fa8c
|
||||
fish_color_redirection f8f8f2
|
||||
fish_color_end ffb86c
|
||||
fish_color_error ff5555
|
||||
fish_color_param bd93f9
|
||||
fish_color_comment 6272a4
|
||||
fish_color_selection --background=44475a
|
||||
fish_color_search_match --background=44475a
|
||||
fish_color_operator 50fa7b
|
||||
fish_color_escape ff79c6
|
||||
fish_color_autosuggestion 6272a4
|
||||
fish_color_cancel ff5555 --reverse
|
||||
fish_color_option ffb86c
|
||||
fish_color_history_current --bold
|
||||
fish_color_status ff5555
|
||||
fish_color_valid_path --underline
|
||||
|
||||
# Default Prompt Colors
|
||||
fish_color_cwd 50fa7b
|
||||
fish_color_cwd_root red
|
||||
fish_color_host bd93f9
|
||||
fish_color_host_remote bd93f9
|
||||
fish_color_user 8be9fd
|
||||
|
||||
# Completion Pager Colors
|
||||
set -g fish_pager_color_progress $comment
|
||||
set -g fish_pager_color_prefix $cyan
|
||||
set -g fish_pager_color_completion $foreground
|
||||
set -g fish_pager_color_description $comment
|
||||
fish_pager_color_progress 6272a4
|
||||
fish_pager_color_background
|
||||
fish_pager_color_prefix 8be9fd
|
||||
fish_pager_color_completion f8f8f2
|
||||
fish_pager_color_description 6272a4
|
||||
fish_pager_color_selected_background --background=44475a
|
||||
fish_pager_color_selected_prefix 8be9fd
|
||||
fish_pager_color_selected_completion f8f8f2
|
||||
fish_pager_color_selected_description 6272a4
|
||||
fish_pager_color_secondary_background
|
||||
fish_pager_color_secondary_prefix 8be9fd
|
||||
fish_pager_color_secondary_completion f8f8f2
|
||||
fish_pager_color_secondary_description 6272a4
|
||||
#+END_SRC
|
||||
|
||||
** Terminal
|
||||
|
Reference in New Issue
Block a user