Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/flavono123/dotfiles
https://github.com/flavono123/dotfiles
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/flavono123/dotfiles
- Owner: flavono123
- Created: 2019-04-26T03:39:21.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2024-04-11T07:15:11.000Z (7 months ago)
- Last Synced: 2024-04-11T08:29:29.671Z (7 months ago)
- Language: Lua
- Homepage:
- Size: 229 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Prerequisuite
```sh
# MacOS
## Install Homebrew
## ref. https://brew.sh/
$ /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"## Install the bash and change as the default shell
$ brew install bash## Install packages
$ brew install bash-completion bat coreutils findutils git gpg pinetry-mac npm starship stow ripgrep wget
```## Install/Uninstall
```sh
# Migrate from the local $HOME to dotfiles
$ cp -r ~//*# Link
$ stow -nv -S -t ~ # Simulate before install
$ stow -v -S -t ~
$ stow -v -S -t ~/.config/
$ stow -v -S -t ~ --adopt # Overwirte to existing files
# vscode required
$ stow -nv -S vscode -t ~/Library/Application\ Support/Code/User/ --adopt
$ stow -v -S vscode -t ~/Library/Application\ Support/Code/User/ --adopt# Unlink
$ stow -nv -D -t ~ # Simulate before uninstall
$ stow -v -D -t ~# Install scripts as binaries
$ stow -v -S scripts -t /usr/local/bin
```