All Projects → tupton → dotfiles

tupton / dotfiles

Licence: other
⚙ My configuration files.

Programming Languages

shell
77523 projects
Vim Script
2826 projects
javascript
184084 projects - #8 most used programming language
Makefile
30231 projects

Projects that are alternatives of or similar to dotfiles

dotfiles
Centaur Dotfiles - Full and clean configurations for development environment on GNU Linux, macOS and Cygwin
Stars: ✭ 96 (+540%)
Mutual labels:  personal-dotfiles
dotfiles
💾 dotfiles for macOS - includes zsh, hyper key, Karabiner, and Phoenix configurations. Installation via dotbot.
Stars: ✭ 41 (+173.33%)
Mutual labels:  personal-dotfiles
Dotfiles
🍙 Personal dotfiles repository.
Stars: ✭ 148 (+886.67%)
Mutual labels:  personal-dotfiles

Dotfiles

CircleCI Build Status

A collection of config files that I use.

Installation

Installing will overwrite anything in the way. Run make -n first. If you are happy with that output, you can test the dotfile environment with

❯ TMP=$(mktemp -d -t HOME); HOME=$TMP make install && ls -al $TMP && unset TMP

Install common, cross-platform dotfiles to $HOME with

❯ make install

Install individual dotfiles with, e.g.

❯ make install-git

or

❯ make install-vim-config

and so forth.

Look at the Makefile to see which dotfiles are installed by default and which require running a separate task. For example, tarsnap configs only really apply to my local machine, so they are not installed by default.

Use make list to see a list of all targets, including the test targets and any auxiliary helper targets. More on test targets follows.

Tests

There is a test target in the Makefile. Not everything is tested, but I've attempted to verify the files that can be tested. If you know of a way to verify or test other dotfiles, please open an issue or let me know.

  • All zsh and bash config files and scripts are parsed by their respective shells. This includes all the zsh installation script helpers.
  • All vim config files are linted by vim-vint.
  • All dotjs files are linted by eslint.

You need bash and zsh installed to check the syntax of some installation files. Presumably, if you are using these dotfiles, you have at least those two shells installed.

In order to test the dotjs and vim config files, you need to install vim-vint and eslint. There is a test-requirements.txt to help with vim-vint, and there is a package.json to help with the javascript linters. Simply run pip install -r test-requirements.txt and npm install --only=dev to install these dependencies.

Note that you do not need to install pip and npm requirements in order to install and use these dotfiles. These requirements are only used for running tests, hence their test- and dev-specific install commands.

Inspiration and Thanks

https://sanctum.geek.nz/cgit/dotfiles.git/about/ - Makefile and overall project structure

https://github.com/holman/dotfiles - Interactive, templated gitconfig

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].