diff --git a/README.md b/README.md index 9cd70e5..f7fad59 100644 --- a/README.md +++ b/README.md @@ -2,15 +2,26 @@ My dotfiles, I guess ## About -I used to like ricing, now I use a boring theme and (almost) default sway +I used to like ricing. Now I use a basic theme, Sway, and a Comic Sans based programming font.... + +## Packages +General stuff I need to remember: +* Kitty (For launching Neovim) +* Sway & Sway-adjacent utils (For launching Kitty) +* Grim (Select area of the screen) +* Slurp (Slurp the screen into a image file) +* Pamixer (Get the volume from the command line) +* Neovim (Everything) ## General Information -* Theme: Modus +* Operating System: Fedora 41 Workstation +* Theme: Modus Vivendi (tinted) * Terminal: Kitty * Window Manager: Sway (Wayland) -* Shell: bash +* Shell: Zsh * Editor: Neovim -* Font: Comic Code + Nerd Fonts +* Terminal Font: Comic Code + Nerd Fonts +* UI Font: JetBrains Mono ## Screenshots ![](screenshot1.png) diff --git a/config/zsh/.zshrc b/config/zsh/.zshrc new file mode 100644 index 0000000..1ca5dbd --- /dev/null +++ b/config/zsh/.zshrc @@ -0,0 +1,24 @@ +ZINIT_HOME="${XDG_DATA_HOME:-${HOME}/.local/share}/zinit/zinit.git" +[ ! -d $ZINIT_HOME ] && mkdir -p "$(dirname $ZINIT_HOME)" +[ ! -d $ZINIT_HOME/.git ] && git clone https://github.com/zdharma-continuum/zinit.git "$ZINIT_HOME" +source "${ZINIT_HOME}/zinit.zsh" + +export HISTFILE="$HOME/.zsh_history" +export HISTSIZE=10000000 +export SAVEHIST=10000000 + +zinit load zsh-users/zsh-autosuggestions +zinit load zsh-users/zsh-syntax-highlighting +#zinit load agkozak/agkozak-zsh-prompt +zinit ice depth=1; zinit light jeffreytse/zsh-vi-mode + +export SYSTEMD_PAGER= + +. "$HOME/.cargo/env" + +export PATH=$HOME/.local/bin:$PATH + +# Auto login to sway +if [[ $(tty) == "/dev/tty1" ]]; then + sway +fi