added zshrc and kitty.conf

This commit is contained in:
rezzect 2024-05-08 12:34:44 -07:00
parent ef09c57e5b
commit c218f52d40
2 changed files with 70 additions and 0 deletions

29
kitty/kitty.conf Normal file
View File

@ -0,0 +1,29 @@
font_family CaskaydiaCove NFM
font_size 14.0
remember_window_size no
initial_window_width 105c
initial_window_height 32c
background_opacity 0.80
# Colors
foreground #ffffff
background #282c34
color0 #282c34
color1 #e06c75
color2 #98c379
color3 #e5c07b
color4 #61afef
color5 #be5046
color6 #56b6c2
color7 #979eab
color8 #393e48
color9 #d19a66
color10 #56b6c2
color11 #e5c07b
color12 #61afef
color13 #be5046
color14 #56b6c2
color15 #abb2bf

41
zsh/.zshrc Normal file
View File

@ -0,0 +1,41 @@
# Bring "xterm" up to "xterm-256color", fairly well expected this should work
[[ "$TERM" == "xterm" ]] && export TERM="xterm-256color"
HISTFILE=~/.zsh_history
HISTSIZE=10000
SAVEHIST=10000
setopt appendhistory
eval "$(oh-my-posh init zsh)"
# make sure antigen exists
if [[ ! -a ~/.antigen.zsh ]]; then
wget https://git.io/antigen -O ~/.antigen.zsh
fi
# Add .local/bin
if [[ ! "$PATH" =~ "$HOME/.local/bin" ]]; then
export PATH="$HOME/.local/bin:$PATH"
fi
# load in antigen
source ~/.antigen.zsh
# plugins from oh-my-zsh
antigen bundle git
# plugins from other repos
antigen bundle zsh-users/zsh-autosuggestions
antigen bundle zsh-users/zsh-syntax-highlighting
# finish up
antigen apply
# zsh autosuggestions
ZSH_AUTOSUGGEST_STRATEGY=(history completion)
# Preferred Editor
export EDITOR="nano"
eval "$(oh-my-posh init zsh --config ~/.omp-themes/rezztheme-edit.omp.json)"
eval "$(zoxide init zsh)"
# Call on .alias file
. ~/.aliases