Finished hacker theme mostly and added some other configs
This commit is contained in:
parent
0c499ecbd6
commit
ad06f5284e
91 changed files with 1928 additions and 3 deletions
34
themes/hacker/.config/fish/config.fish
Normal file
34
themes/hacker/.config/fish/config.fish
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
source /usr/share/cachyos-fish-config/cachyos-config.fish
|
||||
|
||||
fish_config theme choose "Hacker"
|
||||
|
||||
oh-my-posh init fish --config ~/.config/oh-my-posh/hacker.omp.json | source
|
||||
|
||||
alias mntnas="sudo mount -a"
|
||||
|
||||
# Set Zed as the default editor
|
||||
set -gx EDITOR /usr/local/bin/zed_sudo_wrapper
|
||||
set -gx VISUAL "zeditor --wait"
|
||||
set -gx SUDO_EDITOR "zeditor --wait"
|
||||
|
||||
# Start SSH agent if not already running
|
||||
if not set -q SSH_AGENT_PID
|
||||
eval (ssh-agent -c)
|
||||
end
|
||||
|
||||
function update
|
||||
sudo pacman -Syu --noconfirm
|
||||
paru -Syu --noconfirm
|
||||
sudo pacman -Sc --noconfirm
|
||||
paru -Sc --noconfirm
|
||||
end
|
||||
|
||||
function helium
|
||||
exec /usr/bin/helium-0.6.9.1-x86_64.AppImage
|
||||
end
|
||||
|
||||
function add_ssh_key
|
||||
set -l ssh_key ~/.ssh/github-ssh
|
||||
echo "Adding SSH key..."
|
||||
ssh-add $ssh_key
|
||||
end
|
||||
32
themes/hacker/.config/fish/themes/Hacker.theme
Normal file
32
themes/hacker/.config/fish/themes/Hacker.theme
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
# Hacker theme for fish shell
|
||||
|
||||
fish_color_normal f4decd
|
||||
fish_color_command ef934d
|
||||
fish_color_keyword ef934d
|
||||
fish_color_quote e8c97e
|
||||
fish_color_redirection 71b4d6
|
||||
fish_color_end f4decd
|
||||
fish_color_error f16e65
|
||||
fish_color_param f4decd
|
||||
fish_color_comment 6a6a6a
|
||||
fish_color_selection --background=2a2b2a
|
||||
fish_color_search_match --background=1e1f1e
|
||||
fish_color_operator ef934d
|
||||
fish_color_escape f4decd
|
||||
fish_color_autosuggestion 6a6a6a
|
||||
fish_color_cwd ef934d
|
||||
fish_color_cwd_root f16e65
|
||||
fish_color_valid_path --underline
|
||||
fish_color_user ef934d
|
||||
fish_color_host f4decd
|
||||
fish_color_host_remote e8c97e
|
||||
fish_color_cancel f16e65
|
||||
fish_pager_color_progress 6a6a6a
|
||||
fish_pager_color_background
|
||||
fish_pager_color_prefix ef934d
|
||||
fish_pager_color_completion f4decd
|
||||
fish_pager_color_description 6a6a6a
|
||||
fish_pager_color_selected_background --background=2a2b2a
|
||||
fish_pager_color_selected_prefix ef934d
|
||||
fish_pager_color_selected_completion f4decd
|
||||
fish_pager_color_selected_description e8c97e
|
||||
Loading…
Add table
Add a link
Reference in a new issue