Skip to content

🔧 Ryan's .files, including ~/.macos

License

Notifications You must be signed in to change notification settings

Glitched/dotfiles

 
 

Repository files navigation

Ryan’s Dotfiles

This is still in early stages. The automated scripts are not working currently and I have many configs I need to improve and include. Additionally, this is still untested on a new system, but that will change in the coming months.

Configs Included

  • Neovim (Plugins autoinstalled with Plug)
  • Fish (Plugins autoinstalled with fisher)
  • Git
  • macOS
  • iTerm Profile
  • Brew Packages (and apps with cask)
  • Yabai
  • Skhd
  • Karabiner-Elements
  • tmux
  • lf

I will include a config for Starship when format string support arrives, but I just can't add much value at the moment. I also replace several default tools with modern rust alternatives.

  • cat -> bat
  • ls -> broot or eza
  • grep -> ripgrep
  • find -> fd

Installation

Warning: If you want to give these dotfiles a try, you should first fork this repository, review the code, and remove things you don’t want or need. Don’t blindly use my settings unless you know what that entails. Use at your own risk!

  1. Use this script to install Homebrew, git, and then clone the repo to the current directory
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Glitched/dotfiles/master/install.sh)"
  1. Run the installation scripts you want
  2. Symlink the configs you want

I aim to improve the installation script to automate parts 2 & 3, but that's not a priority.

Add custom commands without creating a new fork

If ~/.extra exists, it will be sourced along with the other files. You can use this to add a few custom commands without the need to fork this entire repository, or to add commands you don’t want to commit to a public repository.

My ~/.extra looks something like this:

# Git credentials
# Not in the repository, to prevent people from accidentally committing under my name
GIT_AUTHOR_NAME="Ryan Slama"
GIT_COMMITTER_NAME="$GIT_AUTHOR_NAME"
git config --global user.name "$GIT_AUTHOR_NAME"
GIT_AUTHOR_EMAIL="[email protected]"
GIT_COMMITTER_EMAIL="$GIT_AUTHOR_EMAIL"
git config --global user.email "$GIT_AUTHOR_EMAIL"

You could also use ~/.extra to override settings, functions and aliases from my dotfiles repository. It’s probably better to fork this repository instead, though.

Feedback

Suggestions/improvements welcome!

Thanks to…

About

🔧 Ryan's .files, including ~/.macos

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Shell 69.2%
  • Vim Script 29.0%
  • Ruby 1.8%