readme and zsh
This commit is contained in:
parent
5dadf1143a
commit
15fd1c1fbb
19
README.md
19
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
|
||||

|
||||
|
|
24
config/zsh/.zshrc
Normal file
24
config/zsh/.zshrc
Normal file
|
@ -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
|
Loading…
Reference in a new issue