• Stars
    star
    155
  • Rank 240,864 (Top 5 %)
  • Language
    Shell
  • License
    MIT License
  • Created over 10 years ago
  • Updated 3 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

My dotfiles

My Dotfiles

Stratus3D

Everything I need to get setup on a new machine for software development.

This repository contains my Vim, tmux, Zsh, Bash, and asdf config files, a script to symlink all the config files and directories in place, and a set of setup scripts that install all the tools I need on Ubuntu or OSX. The Gruvbox Dark colorscheme is used for Vim and the terminal emulator profiles.

I primarily write software in Erlang, Elixir, Rust, and Bash and occasionally in Ruby, JavaScript/Node.JS, Python, and Lua. The plugins and config specified in this repo is for polyglot local development in these languages.

Features

  • Vim, tmux, Zsh, Bash, asdf, and Git configurations, as well as configurations for all other tools I use
  • Setup script that symlinks dotfiles and installs all the software I use
  • A collection of Bash scripts I rely on for software development
  • Profiles for the terminal emulators I use
  • List of commands I often forget

Installation

Prerequisites

  • curl - For the command below

Installation Steps

  1. Run the setup.sh. This will install all the necessary software, setup commonly used directories, and install dotfiles. Since the setup script is idempotent it can be run on machines that have already been setup without causing issues.

     curl -s https://raw.githubusercontent.com/Stratus3D/dotfiles/master/scripts/setup.sh --output setup.sh
     chmod +x setup.sh
     ./setup.sh | tee ~/setup.log
    

    On Debian this is all you need to do. Everything should be installed and configured correctly. On OSX there are two remaining steps.

  2. (OSX only) Configure Terminal.app to use the custom profile stored in the dotfiles directory. In the Terminal preferences window under the Profiles tab click the "import" button and navigate to ~/dotfiles/terminal.app_profile/ and select the profile file.

Configuration

Configurations for all the tools are need are checked into this repository. All the dotfiles are symlinked with to my home directory with the scripts/makesymlinks.sh script. The makesymlink.sh script is run by the setup.sh script, which is used to install these dotfiles.

Software

This is software that I use for my day-to-day work. All of this is installed via the setup.sh script.

OSX Only

Documentation

Offline documentation suitable for day to day use.

Repositories that I referred to when creating these dotfiles

Feedback

Suggestions/improvements are welcome! Please open an issue or contact me directly.

More Repositories

1

eflambe

A tool for rapid profiling of Erlang and Elixir applications
Erlang
112
star
2

asdf-lua

Lua plugin for asdf version manager. https://github.com/asdf-vm/asdf
Shell
62
star
3

asdf-rebar

Rebar3/Rebar version management plugin for asdf
Shell
33
star
4

erlang-cheatsheet

A cheatsheet covering all the quirks of exit signals and exception handling you always forget.
SCSS
25
star
5

programming_erlang_exercises

Solutions to the exercises in Joe Armstrong's book "Programming Erlang" 2nd Edition. Solutions are my own. Better ones may exist.
Erlang
24
star
6

Spout

A TAP producer that integrates with existing ExUnit tests via an ExUnit formatter
Elixir
7
star
7

CTTAP

A TAP producer that integrates with existing Common Test suites via a Common Test hook
Erlang
3
star
8

ex_note

An experiment to see how difficult it is to create ExDoc like module attributes for things like TODOs and FIXMEs
Elixir
3
star
9

Vundle.vim

A locally cached copy of the original Vundle.vim repo
Vim Script
3
star
10

why_erlang

Code samples from my talk entitled "Why Erlang?"
Erlang
2
star
11

sort_subpages

Sort Subpages Concrete5.5.2 Package
PHP
2
star
12

foray_into_functional_programming_with_elixir

Code samples from my talk entitled "Foray into Functional Programming with Elixir"
Elixir
1
star
13

fisher_yates_shuffle

A simple implementation of the Fisher-Yates shuffle in Erlang
Erlang
1
star
14

eratosthenes_sieve

An implementation of the ancient algorithm for finding all the prime numbers under a certain value. Implemented in Elixir.
Elixir
1
star
15

elixir_erlang_for_rubyists

Code used for the demos in my "Elixir: The Power of Erlang for Rubyists" talk
Elixir
1
star