Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/fa7ad/myconfig
- Owner: fa7ad
- License: other
- Created: 2015-12-15T16:56:56.000Z (about 9 years ago)
- Default Branch: main
- Last Pushed: 2024-11-01T22:45:40.000Z (3 months ago)
- Last Synced: 2024-11-01T23:24:58.848Z (3 months ago)
- Topics: archlinux, dotfiles, fish
- Language: Shell
- Homepage:
- Size: 44.3 MB
- Stars: 9
- Watchers: 3
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
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
```