Skip to content

Latest commit

 

History

History
113 lines (90 loc) · 3.83 KB

README.md

File metadata and controls

113 lines (90 loc) · 3.83 KB

Contents

Repo overview

  • This repo is where I keep the dotfiles I'm currently using
  • The other repo https://github.com/linkarzu/dotfiles-public is referenced in my youtube 2024 macos workflow video series
    • https://youtube.com/playlist?list=PLZWMav2s1MZTanWwNKYvS8qgwl0HBH9J-&si=q6ByPmN8I7SOBKmX
    • That old repo is no longer maintained, so use this new repo instead

Some of my YouTube videos

My complete Neovim markdown setup and workflow in 2024

Tired of seeing Catppuccin everywhere? Meet the Eldritch theme

Neovim or Neovide, what is the difference?

Why I switched from Alacritty to kitty, and how to configure kitty

My dotfiles and how to clone them

  • This video may seem old and outdated, and it is, but it's content is still relevant

Update symbolic links

  • Commands below will create all the files if they don't yet exist if they do exist, it will update them.
  • -n allows the link to be treated as a normal file if it is a symlink to a directory
  • -f "force" overwrites without warning if it already exists

Point your ~/.zshrc file to the desired repo

ln -snf ~/github/dotfiles-latest/zshrc/zshrc-file.sh ~/.zshrc >/dev/null 2>&1
source ~/.zshrc
ln -snf ~/github/dotfiles-public/zshrc/zshrc-file.sh ~/.zshrc >/dev/null 2>&1
source ~/.zshrc
# This is on the other repo where I keep my ssh config files
ln -snf ~/github/dotfiles/sshconfig-pers ~/.ssh/config >/dev/null 2>&1