diff --git a/kitty/kitty.conf b/kitty/kitty.conf new file mode 100644 index 0000000..af6a7fc --- /dev/null +++ b/kitty/kitty.conf @@ -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 diff --git a/zsh/.zshrc b/zsh/.zshrc new file mode 100644 index 0000000..d916535 --- /dev/null +++ b/zsh/.zshrc @@ -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