Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/naoyamiyagawa/dotfiles
for rapid set-up
https://github.com/naoyamiyagawa/dotfiles
Last synced: 20 days ago
JSON representation
for rapid set-up
- Host: GitHub
- URL: https://github.com/naoyamiyagawa/dotfiles
- Owner: NaoyaMiyagawa
- Created: 2021-04-03T01:40:04.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-10-03T09:07:26.000Z (about 2 months ago)
- Last Synced: 2024-10-15T02:39:35.512Z (about 1 month ago)
- Language: Shell
- Size: 115 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# dotfiles
## How to install
```bash
# deploy dotfiles
cd ~
git clone https://github.com/NaoyaMiyagawa/dotfiles.git
cd ~/dotfiles; make install; cd ~
zsh
```#### for Linux
The following utilities are required.```bash
# Redhel
yum install -y \
git zip unzip tar make python3 zsh file gcc vim-enhanced# Debian
apt-get update && apt-get install -y \
git zip unzip tar make python3 zsh file gcc vim
``````
# (optional) apply Japanese Launguage Pack
yum install -y glibc-langpack-ja
```#### Error Reference
If you encounter this error while using zsh on amazonlinux, try it again on bash.
```
x x86_64 builds for amazonlinux are not yet available for Starship> If you would like to see a build for your configuration,
> please create an issue requesting a build for x86_64-amazonlinux:
> https://github.com/starship/starship/issues/new/
```## How to see the list of dotfiles
```bash
cd ~/dotfiles
make list
```## How to test the result of applied dotfiles
```bash
# run plain amazonlinux2 docker container
docker run -it --rm amazonlinux:2 /bin/bash----
# install necessary utilities to run installer of dotfiles
yum install -y git unzip tar make python3 zsh file gcc vim-enhanced
# (optional) apply Japanese Launguage Pack
yum install -y glibc-langpack-ja# change shell to zsh
zsh# deploy dotfiles
cd ~
git clone https://github.com/NaoyaMiyagawa/dotfiles.git
cd ~/dotfiles; make install; cd ~# reload zsh
source ~/.zshrc
```