Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/felixhummel/configs
$HOME/configs
https://github.com/felixhummel/configs
Last synced: 4 days ago
JSON representation
$HOME/configs
- Host: GitHub
- URL: https://github.com/felixhummel/configs
- Owner: felixhummel
- License: mit
- Created: 2011-10-27T15:02:08.000Z (about 13 years ago)
- Default Branch: master
- Last Pushed: 2024-10-24T12:00:23.000Z (15 days ago)
- Last Synced: 2024-10-25T11:51:49.699Z (14 days ago)
- Language: Vim Script
- Homepage:
- Size: 572 KB
- Stars: 6
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
- awesome-starred - felixhummel/configs - $HOME/configs (others)
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 > ~/.inputrccat <> ~/.vimrc
set mouse=
EOFexec $SHELL
```