Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/flavono123/dotfiles


https://github.com/flavono123/dotfiles

Last synced: about 1 month ago
JSON representation

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
```