Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/fa7ad/myconfig

All my "dotfiles" as a backup
https://github.com/fa7ad/myconfig

archlinux dotfiles fish

Last synced: 3 months ago
JSON representation

All my "dotfiles" as a backup

Awesome Lists containing this project

README

        

# My configuration files

Started out on Linux, but now I'm working on replacing this with the config for my macOS setup.

## Required software
* [Homebrew](https://brew.sh/)
`/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"`
* These homebrew formulae (all other formulae and casks should be handled by homebrew-bundle):
```bash
brew install fish stow
```

## Set up
```bash
fish INSTALL.fish
which fish | sudo tee -a /etc/shells # this step is necessary since fish is being installed from homebrew
chsh -s $(which fish)
brew bundle install --global

# fisher hack needed when adopting new pc
git apply 00000_*.patch
fish
fisher list
fisher update
```