Added valentines theme; various color updates added

This commit is contained in:
Wryn Wagner 2021-02-05 15:49:22 -07:00
parent 6d40526325
commit 5ab6ef1037
8 changed files with 91 additions and 1 deletions

2
.gitignore vendored
View File

@ -2,6 +2,8 @@
latex/*.aux latex/*.aux
latex/*.log latex/*.log
latex/*.pdf latex/*.pdf
latex/*.out
resume/*.aux resume/*.aux
resume/*.log resume/*.log
resume/*.pdf resume/*.pdf
resume/*.out

View File

@ -0,0 +1,21 @@
background #150015
foreground #e3dfd2
cursor #ffdddd
selection_background #ff00aa
color0 #460020
color8 #900045
color1 #db133f
color9 #df5472
color2 #dc39dc
color10 #ed7bee
color3 #7918f4
color11 #7d72fe
color4 #951255
color12 #e75ba2
color5 #7d1295
color13 #934ba3
color6 #f1195a
color14 #e75c84
color7 #deb88d
color15 #fee3cd
selection_foreground #ffffff

View File

@ -0,0 +1,52 @@
#!/bin/sh
##############################
foreground='E3DFD2'
background='150015'
red='DB133F'
brightred='DF5472'
green='DC39DC'
brightgreen='ED7BEE'
yellow='7918F4'
brightyellow='7D72FE'
blue='951255'
brightblue='E75BA2'
magenta='7D1295'
brightmagenta='934BA3'
cyan='DEB88D'
brightcyan='FEE3CD'
gray='460020'
brightgray='900045'
##############################
if [ "$TERM" = "linux" ]; then
/bin/echo -e "
\e]P0$background
\e]P1$red
\e]P2$green
\e]P3$yellow
\e]P4$blue
\e]P5$magenta
\e]P6$cyan
\e]P7$foreground
\e]P8$brightred
\e]P9$brightgreen
\e]PA$brightyellow
\e]PB$brightblue
\e]PC$brightmagenta
\e]PD$brightcyan
\e]PE$gray
\e]PF$brightgray
"
clear;
fi

View File

@ -13,3 +13,7 @@
[pull] [pull]
default = current default = current
rebase = true rebase = true
[color]
diff = always
status = always
branch = always

View File

@ -1 +1 @@
/home/w0ryn/.wryn/config/colorschemes/kitty/WrynChristmas.conf /home/w0ryn/.wryn/config/colorschemes/kitty/WrynValentines.conf

1
config/ripgrep/config Normal file
View File

@ -0,0 +1 @@
--color=always

6
setup
View File

@ -141,6 +141,11 @@ function CONFIG__PYLINT() {
echo "linked pylint configuration" echo "linked pylint configuration"
} }
function CONFIG__RIPGREP() {
CONFIG__SYMLINK "ripgrep" "config"
echo "linked ripgrep configuration"
}
function CONFIG__TMUX() { function CONFIG__TMUX() {
CONFIG__BASIC_SYMLINK "$HOME/.tmux.conf" "$HOME/.wryn/tmux/tmux.conf"; CONFIG__BASIC_SYMLINK "$HOME/.tmux.conf" "$HOME/.wryn/tmux/tmux.conf";
echo "linked tmux configuration" echo "linked tmux configuration"
@ -159,6 +164,7 @@ function CONFIG__TERMINFO() {
} }
function CONFIG__SETUP() { function CONFIG__SETUP() {
CONFIG__I3; CONFIG__I3;
CONFIG__PGCLI; CONFIG__PGCLI;

View File

@ -7,6 +7,8 @@ alias pd='pushd';
alias qd='popd'; alias qd='popd';
alias lspd='dirs'; alias lspd='dirs';
alias bp='clear; bpython';
alias pdo='pwd | xclip'; # [p]aste current [d]irectory [o]n clipboard alias pdo='pwd | xclip'; # [p]aste current [d]irectory [o]n clipboard
alias cdo='cd $(xclip -o)'; # [cd] to directory [o]n clipboard alias cdo='cd $(xclip -o)'; # [cd] to directory [o]n clipboard
@ -36,6 +38,8 @@ OPEN_CURRENT_GIT_REPOSITORY_IN_WEB_BROWSER() {
# --- Miscellaneous ------------------------------------------- # --- Miscellaneous -------------------------------------------
export RIPGREP_CONFIG_PATH="$HOME/.config/ripgrep/config";
alias erg='EDIT_RIP_GREP_FILE_MATCHES'; alias erg='EDIT_RIP_GREP_FILE_MATCHES';
EDIT_RIP_GREP_FILE_MATCHES() { EDIT_RIP_GREP_FILE_MATCHES() {
[ $EDITOR = "vim" ] \ [ $EDITOR = "vim" ] \