Upload files to ''

This commit is contained in:
Taylor Kirk 2022-09-19 04:21:02 +00:00
parent fbf81aaad1
commit 3c800c5c09
5 changed files with 1722 additions and 0 deletions

55
.Xresources Normal file
View File

@ -0,0 +1,55 @@
!{{{ Font settings
Xft.autohint: true
Xft.hinting: true
Xft.rgba:. rgb
Xft.dpi: 96
Xft.antialias: true
Xft.rgba: rgb
Xft.hinting: true
Xft.lcdfilter: lcddefault
Xft.hintstyle: hintfull
!}}}
!{{{ XTerm settings
XTerm.vt100.faceName: MesloLGS Nerd Font:style=Regular:size=12
XTerm.vt100.font: 7x13
XTerm.vt100.saveLines: 4096
XTerm.vt100.selectToClipboard: true
XTerm.vt100.scrollBar: false
!}}}
!! special
*.foreground: #F8F8F2
*.background: #282A36
!! black dark/light
*.color0: #000000
*.color8: #4D4D4D
!! red dark/light
*.color1: #FF5555
*.color9: #FF6E67
!! green dark/light
*.color2: #50FA7B
*.color10: #5AF78E
!! yellow dark/light
*.color3: #F1FA8C
*.color11: #F4F99D
!! blue dark/light
*.color4: #BD93F9
*.color12: #CAA9FA
!! magenta dark/light
*.color5: #FF79C6
*.color13: #FF92D0
!! cyan dark/light
*.color6: #8BE9FD
*.color14: #9AEDFE
!! white dark/light
*.color7: #BFBFBF
*.color15: #E6E6E6

1623
.p10k.zsh Normal file

File diff suppressed because it is too large Load Diff

35
.rgrc Normal file
View File

@ -0,0 +1,35 @@
# Search hidden files and directories.
--hidden
# Follow symbolic links.
--follow
# Don't respect ignore files (.gitignore, .ignore, etc.).
--no-ignore
# Exclude directories.
--glob=!{.git,.svn,node_modules,tealdeer,Trash,vendor}
# Exclude file types.
--glob=!*.{lock}
# Exclude files.
--glob=!{package-lock.json}
# Don't print lines longer than this limit.
--max-columns=10000
# Searches case insensitively.
--smart-case
# Sort by file path.
--sort=path
# Configure color settings and styles.
--colors=path:bg:0x3b,0x3b,0x3b
--colors=path:fg:white
--colors=line:fg:0xf2,0xc2,0x60
--colors=match:bg:0x2b,0x83,0xa6
--colors=match:fg:0xff,0xff,0xff
--colors=match:style:nobold

6
.zshenv Normal file
View File

@ -0,0 +1,6 @@
#!/usr/bin/env zsh
ZDOTDIR=$HOME/.config/zsh
export ZDOTDIR
[[ -f "$ZDOTDIR/.zshenv" ]] || source "$ZDOTDIR/.zshenv"

3
.zshrc Normal file
View File

@ -0,0 +1,3 @@
#!/usr/bin/env zsh
source $ZDOTDIR/zshrc