Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/felixhummel/configs

$HOME/configs
https://github.com/felixhummel/configs

Last synced: 4 days ago
JSON representation

$HOME/configs

Awesome Lists containing this project

README

        

# Getting Started
Clone this and initialize. Backups will be created in `$HOME/bak/configs`.
```
cd $HOME
git clone https://github.com/felixhummel/configs.git
cd configs
./init --force --email "$USER@$(hostname -f)" --name "$USER"
./pluginstall
exec $SHELL
```

Git email and name will be written to `~/.gitconfig.d/user` which is included by
`~/.gitconfig`.

Missing git?
```
apt-get update && apt-get --yes install git
```

tmux plugins (via TPM)
```
git submodule update --init
```

# Absolute Essentials
Don't want/need all the configs on a box? Here's the bare minimum:
```
curl https://raw.githubusercontent.com/felixhummel/configs/master/readline/inputrc > ~/.inputrc

cat <> ~/.vimrc
set mouse=
EOF

exec $SHELL

```