https://github.com/felixhummel/configs
$HOME/configs
https://github.com/felixhummel/configs
Last synced: 22 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 (over 13 years ago)
- Default Branch: master
- Last Pushed: 2025-02-20T09:30:53.000Z (2 months ago)
- Last Synced: 2025-03-25T21:48:13.326Z (about 1 month ago)
- Language: Vim Script
- Homepage:
- Size: 581 KB
- Stars: 6
- Watchers: 2
- 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
```