Backup, restore, and sync the prefs and settings for your toolbox. Your dotfiles might be the most important files on your machine.
These are my dotfiles. The child of many influences, primarily Zach Holman's dotfiles, who I owe a great deal of credit to.
See Thanks section for full credits.
This is a highly organized and adaptive dotfiles approach. Instead of using a limited set of bloated files, this approach is topic-centric and uses a folder-file structure to allow more effective customization, and diff-tracking.
These dotfiles are meant to support both MacOS and Linux at the same time. I use both regularly and prefer a consistent experience. However, most installs use Homebrew and will not work if Homebrew does not support the OS.
Although one could run the install instructions right from this repo, one should fork or clone the repo into one's own Git provider, first. Then change all references below, from github.com/seantrane/dotfiles to your.com/profile/repo. Doing that will ensure all changes are committed to one's dotfiles repo.
Extract the contents of the repository to ~/.dotfiles. The command below will either use git, if available, or curl to clone the repo to that location.
if type "git" &> /dev/null; then git clone https://github.com/seantrane/dotfiles.git ~/.dotfiles; else cd; curl -LOk https://github.com/seantrane/dotfiles/archive/main.zip; unzip main.zip; mv dotfiles-main .dotfiles; rm main.zip; fiEvery file can be edited or removed as one pleases, but there are few primary files to focus on. Every file is heavily commented and should be intuitive to follow. Learn more about file structure and processing, in contributing docs.
👀 Note: Editing Brewfile.symlink file is a must. Because it contains my software preferences that others may not want. In fact, when I use my dotfiles between work and personal machines, this is the only file I really change.
- Edit
system/Brewfile.symlink, for preferred software, resources, and anything else that can be installed using Homebrew Bundle. - Edit
macos/set-defaults.sh, for macOS defaults, preferences. - Edit
system/Gemfile.symlink, for global Ruby gems. - Edit
script/install, for OS-specific installs, global Node.js/npm dependencies. - (Optional) Edit
zsh/zpreztorc.symlink, for Prezto configuration. - (Optional) Edit
zsh/zshenv.symlinkandzsh/zshrc.symlink, for Zsh configuration. - (Optional) Edit
bash/bashrc.symlink, for Bash configuration.
To bootstrap the .dotfiles and install dependencies, run the following command.
~/.dotfiles/script/bootstrapThis process will...
- Configure the
.gitconfigfile. - Symlink all
~/.dotfiles/*/*.symlinkfiles to the$HOMEdirectory. - Install Xcode Command Line Tools (macOS only), if unavailable.
- Install Homebrew, if unavailable.
- Install Git, if not installed with Homebrew.
- Install Ruby, if not installed with Homebrew.
- Install Prezto, Zsh, and Zsh Completions.
- Reset default shell to Zsh.
After restarting the terminal/shell, run all installers.
~/.dotfiles/script/installRestart the terminal/shell.
- Attention Oh My Zsh users. I prefer to use Prezto because it's faster and lightweight. Oh My Zsh can be easily swapped by editing the "Source/init Prezto" section of
zsh/zshrc.symlink. - The Bash environment resembles the Zsh + Prezto environment as much as possible so that it's more seamless in moments when using Bash. Type
bashat the Zsh-command-line to enter Bash shell, followed byexitwhen finished. If Bash is the preferred default, one can runchsh -s "$(brew --prefix)/bin/bash"orchshell bash, and update IDE preferences.
Everything is built around topic areas. If you're adding a new area to your
forked dotfiles — say, "Java" — you can simply add a java directory and put
files in there.
There are a few special files in the hierarchy.
bin/*: Anything inbin/will get added to your$PATHand be made available everywhere.functions/*: Anything infunctions/will be sourced, auto-loaded into the shell environment.<topic>/*.sh: Any files ending in.shget loaded into Bash and Zsh.<topic>/*.bash: Any files ending in.bashget loaded into Bash.<topic>/*.zsh: Any files ending in.zshget loaded into Zsh.<topic>/path.{,ba,z}sh: Any file namedpath.sh,path.zshorpath.bashis loaded first and is expected to setup$PATHor similar.<topic>/completion.{ba,z}sh: Any file namedcompletion.zshorcompletion.bashis loaded last and is expected to setup autocomplete.<topic>/*.symlink: Any files ending in*.symlinkget symlinked into the$HOMEdirectory (without extension), enabling version control and auto-loading at the same time. These get symlinked in when you runscript/bootstraporinstall_dotfiles.
dot is a simple script that updates dependencies, packages, sets sane macOS
defaults, and so on. Tweak this script, and occasionally run dot from
time to time to keep your environment fresh and up-to-date. You can find
this script in the bin/ directory.
Some extensions may be disabled (commented-out in code).
- Angular Snippets
- Apache Conf
- AsciiDoc support
- Atom Keymap
- Auto Close Tag
- Auto Rename Tag
- AutoFileName
- autopep8 Python formatter
- BalanceD Syntax Theme
- BATS (Bash Automated Testing System)
- Bash IDE
- Better Align
- Black Formatter for Python
- Bootstrap 4, Font awesome 4, Font Awesome 5 Free & Pro snippets
- Brewfile
- Bridge to Kubernetes
- Change Case
- chmod
- Code Runner
- Code Spell Checker
- Contextual Duplicate
- Cucumber (Gherkin) Syntax and Snippets
- Cuelang
- Debugger for Java
- Dev Containers
- Docker
- Document This
- DotENV
- EditorConfig for VS Code
- Elixir Support for VS Code
- ESLint
- ExpressionEngine
- Extension Pack for Java
- File Downloader
- File Utils
- Git History
- GitHub Codespaces
- gitignore
- Go
- Gradle for Java
- GraphQL for VSCode
- HashiCorp Terraform
- i18n Ally
- IntelliCode API Usage Examples
- IntelliCode
- isort
- Jasmine code snippets
- JavaScript (ES6) code snippets
- JavaScript Snippet Pack
- Jekyll Syntax Support
- Jest
- Kubernetes
- Language Support for Java(TM) by Red Hat
- Lodash Snippets
- Markdown Preview Enhanced
- Markdown Preview Github Styling
- Markdown Table Prettifier
- markdownlint
- Material Icon Theme
- Maven for Java
- Mocha Snippets
- Multiple Formatters
- New Relic CodeStream
- New Relic One
- New Relic Query Language
- npm Intellisense
- Output Colorizer
- Path Intellisense
- Prettier - Code formatter
- Project Manager for Java
- Pylance
- Python
- Python Debugger
- Rainbow CSV
- RAML
- React Native Tools
- Regex Previewer
- Remote Development
- REST Client
- Rewrap
- Sass (.sass only)
- Select Line Status Bar
- Shell Snippets
- ShellCheck
- shfmt
- slugify
- SonarLint
- Sort JSON objects
- Sort lines
- Terraform doc snippets
- Test Runner for Java
- Vetur - Vue tooling for VS Code
- VS Code database
- VS DocBlockr
- vscode-icons
- XML Tools
- YAML
- yapf Python formatter
- yo
Big thanks goes out to Zach Holman, whose dotfiles were so awesome, I had to fork them. Zach forked his from Ryan Bates' dotfiles. I am grateful for their efforts. Zach wrote a post on the subject that I encourage reading.
I've also learned and depend on techniques from other dotfiles; Mathias Bynens, Paul Irish, and Simon Owen who also wrote a great article on the subject.
Submit an issue, in which you should provide as much detail as necessary for your issue.
I don't really promote this repository, it's just for my personal use and made available for everyone. If you experience any bugs, I'm definitely interested, but cannot promise anything.
Contributions are always appreciated. Read CONTRIBUTING.md documentation to learn more.
Release details are documented in the CHANGELOG.md file, and on the GitHub Releases page.
Copyright (c) 2015 Sean Trane Sciarrone