Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ziy1-tan/dotfiles
My Linux / Mac dotfiles · powered by dotbot ⚡️
https://github.com/ziy1-tan/dotfiles
alacritty dotbot dotfiles tmux vim zsh
Last synced: 23 days ago
JSON representation
My Linux / Mac dotfiles · powered by dotbot ⚡️
- Host: GitHub
- URL: https://github.com/ziy1-tan/dotfiles
- Owner: Ziy1-Tan
- License: mit
- Created: 2021-10-10T02:57:07.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2024-04-07T03:17:51.000Z (7 months ago)
- Last Synced: 2024-04-07T04:25:15.957Z (7 months ago)
- Topics: alacritty, dotbot, dotfiles, tmux, vim, zsh
- Language: Shell
- Homepage:
- Size: 14.5 MB
- Stars: 10
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# My Linux / Mac Config... ️
Powered by [dotbot](https://github.com/anishathalye/dotbot) ⚡
![screen1](images/sc1.png)
![screen2](images/sc2.png)
![screen3](images/sc3.png)# Contents
| item | config |
| ---------------- | ---------------- |
| vim config | `vimrc` |
| zsh config | `zshrc` |
| tmux config | `tmux.conf` |
| ssh config | `.ssh/config` |
| git config | `gitconfig` |
| fzf config | `zsh/fzf.zsh` |
| alacritty config | `alacritty.tmol` |# Quick Start
```shell
git clone https://github.com/Ziy1-Tan/dotfiles.git
cd dotfiles
git submodule update --init --recursive
./installAll targets have been cleaned
...
All paths have been set up
...
All paths have been set up
...
All links have been set up
Install vim-plug (y/[n])Install fzf
Install brew
All commands have been executed
```Enjoy!
# Proxy Setup
```shell
host_ip="127.0.0.1"# before wsl 2.0
# if [ $(uname) = "Linux" ] && $(grep -qi "Microsoft" /proc/version); then
# host_ip=$(cat /etc/resolv.conf | grep "nameserver" | cut -f 2 -d " ")
# fihttps_proxy=http://$host_ip:7890
http_proxy=http://$host_ip:7890
all_proxy=socks5://$host_ip:7890
export http_proxy https_proxy all_proxy
```