2016-02-15 16:48:35 +01:00
|
|
|
# My Dot Files
|
|
|
|
|
|
|
|
This repo contains a set of tools and configuration files used for development.
|
|
|
|
Especially for Android Rom development
|
|
|
|
|
|
|
|
## Install tool
|
|
|
|
First get git submodule:
|
|
|
|
```
|
2014-07-30 14:07:25 +02:00
|
|
|
git submodule update --init
|
2016-02-15 16:48:35 +01:00
|
|
|
```
|
|
|
|
add scripts path into your PATH
|
2014-07-30 14:07:25 +02:00
|
|
|
|
|
|
|
Then install_config.sh will produce a list of link to copy/past in a terminal. This allow you to select the config files you want
|
|
|
|
|
2016-02-15 16:48:35 +01:00
|
|
|
For example, for vim, this will produce the following content
|
|
|
|
```
|
|
|
|
ln -s PATH_TO_THIS_REPO/.vim ~/.vim
|
|
|
|
ln -s PATH_TO_THIS_REPO/.vimrc ~/.vimrc
|
|
|
|
```
|
|
|
|
|
|
|
|
## Vim
|
|
|
|
|
|
|
|
Vim plugins are managed by vundle. So at first lunch you have to run in vim
|
|
|
|
```
|
|
|
|
:PluginInstall
|
|
|
|
```
|
2014-07-30 14:38:59 +02:00
|
|
|
|