Skip to content
This repository has been archived by the owner on Feb 23, 2022. It is now read-only.
/ set-me-up Public archive

set-me-up aims to simplify the dull setup and maintenance of macOS development environments. It does so by automating the process through a collection of dotfiles and shell scripts.

License

Notifications You must be signed in to change notification settings

omares/set-me-up

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

set-me-up

set-me-up aims to simplify the dull setup and maintenance of macOS development environments. It does so by automating the process through a collection of dotfiles and shell scripts bundled into modules.

Instead of enforcing a certain setup it tries to act as a solid template that is highly customizable to your needs.

Usage

No matter how you obtain smu, as a sane developer you should take a look at the provided modules and dotfiles to verify that no shenanigans are happening.

Use the blueprint

The recommended way to obtain set-me-up is by forking the blueprint setup, which is an own lean repo that comes preconfigured with a tag and module.

You might wonder why not work directly with this repo? Having an own repo for your dotfiles and set-me-up customizations has a few advantages:

  • It is loosely coupled, making your life way easier. The only connection between your repo and set-me-up is through the installer.
  • You can easily walk away from using set-me-up but can keep your precious dotfiles and shell scripts.
  • It is easier to make your setup private as no direct remote to the blueprint or set-me-up repo is required.
  • Your commit history and file list will stay clean.
  • The referenced set-me-up version is fixated in the installer, ensuring that your setup will work even when the master advances. Advancing to the next version is easy by bumping the version in the installer.
  • Its fancy, at least i think so ;)

Obtaining set-me-up

Either use your blueprint or the default installer to obtain set-me-up. This will put all files into ~/set-me-up, the default smu home directory. In case you decided against an own blueprint you can run following command in your console.

bash <(curl --progress-bar -L https://raw.githubusercontent.com/omares/set-me-up/master/.dotfiles/tag-smu/modules/install.sh)

You can change the smu home directory by setting an environment variable called SMU_HOME_DIR. Please keep the variable declared as else the smu scripts are unable to pickup the sources.

Running set-me-up

  1. Use the smu script, which you find inside the smu home directory, to run the base module. Check the base module documentation for more insights.

    smu -p -m base
    

    After running the base module moving the source folder is not recommended due to the usage of symlinks.

  2. Afterwards provision your machine with further modules via the smu script. Repeat the -m switch to specify more then one module.

    smu -p -m essentials -m terminal -m php
    

    As a general rule of thumb only pick the modules you need, running all modules can take quite some time. Fear not, all modules can be installed to a later point of time when you need it.

Customize set-me-up

Using hooks

To customize the setup to your needs set-me-up provides two hook points: Before and after sourcing the module script.

Before hooks enable you to perform special preparations or apply definitions that can influence the module. All smu base variables are defined to check if an existing deceleration already exists, giving you the possibility to come with own values. E.g.: You could override the to be installed ruby version by pre defining the appropriate variable or change the sdkman installation directory.

Polishing module setups or using module functionality can be done with after hooks. A bit of inspiration: By calling git commands in an after hook file you could replace the git username and email dummies. Or install further extensions by using the extension_install function of the php module.

To use hooks provide a before.sh or after.sh inside the module directory. Use rcm tags to provide the hook files.

Using rcm

Through the power of rcm tags set-me-up can favor your version of a file when you provide one. This mitigates the need to tinker directly with set-me-up source files.

Create your own rcm tag and then duplicate the directory structure and files you would like to adapt. rcm will combine all files from the given tags in the order you define. As example when you would like to modify the brewfile of the essentials module the path should look like .dotfiles/tag-my/modules/essentials/brewfile.

Use the smu --lsrc command to show how rcm would manage your dotfiles and to verify your setup.

  • You can add new dotfiles and modules to your tag. rcm symlinks all files if finds.
  • File contents are not merged between tags, your file simply has a higher precedence and will be used instead.
Creating a custom tag
  1. Create a new rcm tag, by creating a new folder prefixed tag- inside the .dotfiles directory: .dotfiles/tag-my
  2. Add your tag to the .rcrc configuration file infront of the current defined tags. Resulting in TAGS="my smu"

??? I am confused

Go to the blue print repo. Fork it. Apply your changes using the techniques from above. Use the installer inside your forked repo to obtain everything. Provision your machine through the smu script.

A closer look

Available modules

The base module is the only module that is required to run at least once on your system to ensure the minimum required constraints for set-me-up to work.

If not available it will install brew and then rcm. Afterwards rcup will be executed to symlink the dotfiles from the .dotfiles folder into your home directory.

This is the only module that is not overwritable via rcm tag management as it is always sourced from the smu installation directory.

You can use smu --lsrc command to show which files will be symlinked to your home directory.

The editor module comes with neovim and vim, although neovim is considered to be used over vim. SpaceVim provides a good configuration base and is referenced in all three vi editors.

For tasks you don't want to solve in vi you can use Intellij IDEA ultimate or Sublime3. The Sublime configuration comes with a few useful plugins that are managed via Package Control.

Macdown for Markdown editing, p4merge for merging/diffing and diff-so-fancy as default git difftool are also part of the editor module.

Apart from theme and font all editors come preconfigured, except Intellij. (SpaceVim, Sublime). To synchronize your Intellij configuration i recommend using the official Settings Sync plugin

Why no atom or Visual Studio Code?
The above editors fulfil my daily needs and neither atom or Visual Studio Code were able to handle large files in multiple attempts. Not having an incentive to switch i continue using Sublime.

Installs a multitude of brew packages, casks and Mac App Store applications. Check the brewfile to get an overview.

Installs goenv for version management and dep for package management. go1 is installed and defined as global version via goenv.

When the terminal module is used the go installation will work out of the box as the required goenv code is already in place.

Installs sdkman to manage all java-world related packages. java8, java10, kotlin1, scala2, maven3, gradle4 and sbt1 are installed via sdkman. java8 will be defined as global version. Android Studio is installed via brew cask.

Sets a bunch of macOS settings. The file is based on macos. None macos related setup calls have been removed.

It is highly recommended to work with a copy that is adapted to your needs!

Runs the macOS updater via console call.

Should your system require a system restart due to an macosupdate caused update, rerun the smu script after rebooting. The update module should be satisfied by the previous run and result in no action.

Installs PHP5, PHP7 and composer for package management via brew. PHP7 will be defined as global version.
For each version the apcu, amqp, igbinary and xdebug extensions are installed via pecl, memcached is installed from source.

The phpswitch script enables you to switch between the installed versions.

Installs pyenv for version management and pipenv for package management. python2 and python3 are installed using pipenv. python3 will be defined as global version.

When the terminal module is used the python installation will work out of the box as the required pyenv code is already in place.

Installs rbenv for version management and bundler for package management. ruby2 is installed and defined as global version via rbenv.

When the terminal module is used the ruby installation will work out of the box as the required rbenv code is already in place.

Configures zsh as your default shell with sane zsh options and provides you with a list of useful plugins managed via zplugin.

For flexibility and speed reasons set-me-up does not rely on any of the popular frameworks but picks a few plugins from these. To keep the console snappy all plugins are loaded asynchronously.

Some of the plugins are:

  • zsh-autosuggestions
  • zsh-completions
  • zsh-you-should-use
  • fast-syntax-highlighting
  • fasd
  • fzf
  • ... and more. Take a look at the zplugin file for a full overview.

By default the terminal module does not come with any theme or fancy prompt. Take a look at the theme module for that.

The base16 material-darker theme and the Nerd Font version of "Fira Code" called "Fura Code" are the two pillars of the theme module. For better readability the light version of the font will be configured and ligatures will be enabled if possible.

base16-manager is used to apply the theme to shell, vim and fzf. Font and/or theme for Sublime, SpaceVim, IDEA Intellij and iterm2 are applied programmatically by adapting the appropriate configuration files.

In case you are using the SMU terminal module, Spaceship ZSH prompt will be enabled with a custom configuration that tries to not be in your way.

A few screenshots:

  1. Terminal
    Terminal
  2. Sublime
    Sublime
  3. SpaceVim
    SpaceVim
  4. IntelliJ
    IntelliJ

Installs nodenv for version management, npm comes with node for package management. node8 and node10 are installed using nodenv. node10 will be defined as global version.

When the terminal module is used the node installation will work out of the box as the required nodenv code is already in place.

Other components

The smu script is wrapped with auto-generated argbash.io code. It aims to make the usage of set-me-up as pleasant as possible. It runs the given modules by sourcing the appropriate script and ensuring a few constraints: always run the base module and prioritize the macOS update to the beginning of the list.

Tries it best to be useful as an updater of the provided sources. Work in progress ;)

How does it work?

Hamid: What's that?
Rambo: It's blue light.
Hamid: What does it do?
Rambo: It turns blue.

TL;DR; It symlinks all dotfiles and stupidly runs shell scripts.

smu symlinks all dotfiles from the .dotfiles folder, which includes the modules, to your home directory. With the power of rcm, .dotfiles/tag-smu/gitconfig becomes ~/.gitconfig. Using bash scripting the installation of brew is ensured. All this is covered by the base module and provides an opinionated base setup on which smu operates.

Depending on the module further applications will be installed by "automating" their installation through other bash scripts.
In most cases set-me-up delegates the legwork to tools that are meant to be used for the job. E.g. installing zplugin for zsh plugin management.

Nothing describes the actual functionality better than code. It is recommended to check the appropriate module script to get the full insights. set-me-up is a plain collection of bash scripts and tools that you probably already worked with, therefor understanding what is happening will be easy. :)

Credits

  • donnemartin/dev-setup set-me-up was born as a fork of donnemartin/dev-setup and my curiosity to adapt it to my needs. As my PR was/is waiting to get merged i continued to rework most of the original code, thus set-me-up emerged.
  • mathiasbynens for his popular macOS script.
  • argbash.io enabling library free and sane argument parsing.
  • brew and brew bundle for the awesome package management.
  • The great people who provide brew formulas and zsh plugins.
  • Especially zimf, oh-my-zsh and prezto as i utilize plugins from these frameworks. And zplugin that has a high every barrier but gives the highest flexibility when it comes to zsh plugin management.
  • thoughtbot rcm for the easy dotfile management.
  • All authors of the installed applications via set-me-up, i am in no way connected to any of them.

Should i miss your name on the credits list please let me know ❤️

Contributions

Yes please! This is a GitHub repo for reasons. :)

About

set-me-up aims to simplify the dull setup and maintenance of macOS development environments. It does so by automating the process through a collection of dotfiles and shell scripts.

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages