Skip to content

nathanshelly/.files

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 

Repository files navigation

.files

My personal dotfiles configuration for macOS & Linux systems.

Primarily a zsh, neovim & tmux workflow (respective folders: zsh, neovim & tmux).

workflow

toc

why use this?

Custom dotfiles can make your terminal setup far more powerful (& prettier).

They can also suck up your time following a rabbit hole of Stack Overflow posts, break in unexpected ways, and generally be a chore to build.

These dotfiles give you the best of a custom configuration without the hassle of maintenance.

the pitch

the anti-pitch

  • 'mo code, 'mo problems - additional dependencies can cause headaches and add complexity or fragility that outweighs the benefits
  • no single dotfiles configuration is best for everyone - these dotfiles were written with my use cases in mind. They will hopefully work for yours (or at least the parts that do can be adopted for your own config); they won't work for everyone's

.files values

Aspirational principles:

  • reliable - avoid fragile dependencies & configuration. Breaking someone's shell (in subtle or unsubtle ways) is far worse than not having a given feature.
  • customizable - support different configurations for different users (without adding too much additional complexity/fragility)
  • passively useful - be useful & worthwhile without learning any aliases or keybindings, modifying any settings or reading any documentation
  • respectful of defaults - make non-standard modifications (e.g. overwriting commonly used bindings) opt-in/easily configurable wherever possible

quickstart

If you use docker you can run the following command to test drive this config with minimal effort (see misc/docker/dotfiles for more details):

docker run --interactive --tty nathanshelly/dotfiles:latest

These dotfiles use 24 bit (true) color. For best results use a terminal emulator that supports this feature (the default macOS emulator, Terminal, does not). Here are a few possibilities: Alacritty, kitty, iTerm2 (macOS-specific).

The below commands will run the infra/setup/setup_dotfiles which will walk through installing shell utilities, symlinking files to their appropriate locations, etc. See the infra/setup folder for documentation on the setup process.

cd $HOME # to clone dotfiles to `$HOME/.files`
# now clone this repo and run setup
git clone https://github.com/nathanshelly/.files.git
cd .files
make setup

Unless something went wrong (๐Ÿคž) you're all set up now! ๐ŸŽ‰

Check out next steps below to explore features/configuration possibilities.

next steps

add your own configuration

If you have your own shell configuration (a .bashrc, .bash_profile, .zshrc, etc.) you will likely be able to simply source it and get the best of this config while overriding with your own.

Note: zsh is mostly backwards compatible with bash. Enough so that most bash configs can be sourced from zsh without any issues. If you have a more complex bash config there may be compatibility issues.

To do so, simply move or copy the file to $DOTFILES/zsh/local.zsh. For example, if you want to preserve configuration from a .bashrc you'd run the following:

# or `mv`
cp $HOME/.bashrc $DOTFILES/zsh/local.zsh
source $HOME/.zshrc

Your configuration should now be applied on top of these dotfiles. Feel free to open an issue if you have any trouble!

add secrets safely

DO NOT check in any tokens or credentials like NPM_TOKENs, database URLs, etc. To avoid this, add such secrets to the gitignored $DOTFILES/zsh/secrets.zsh (you'll need to create it the first time you want to add a secret).

Technically $DOTFILES/zsh/local.zsh is gitignored as well but splitting out secrets into a separate file can help avoid accidental leakage.

explore features/configuration

Here's a few items you might be interested in trying/learning more about:

  • configure high-level features of these dotfiles (changing the theme, setting your editor, disabling the prompt, etc.) via the settings
  • configure your prompt appearance via p10k configure (or disable the prompt altogether via the prompt setting from the previous bullet point)
  • use fzf keybindings to speed up so many things from quickly fuzzily selecting files, find zsh history items you half-remember typing weeks ago, checking out the commit from the one keyword you remember typing in the commit message & more
  • use z <directory-fragment> to quickly jump to frequently/recently visited directories from anywhere
    • for example, z down to jump to downloads or z .f to jump to this directory