Add parameterized install instructions to README
This commit is contained in:
parent
98f5ead54f
commit
bf4338a0f2
1 changed files with 11 additions and 0 deletions
11
README.md
11
README.md
|
@ -12,11 +12,22 @@ There are two versions:
|
||||||
I would, of course, recommend using the awesome version.
|
I would, of course, recommend using the awesome version.
|
||||||
|
|
||||||
## How to install the Awesome version?
|
## How to install the Awesome version?
|
||||||
|
### Install for your own user only
|
||||||
The awesome version includes a lot of great plugins, configurations and color schemes that make Vim a lot better. To install it simply do following from your terminal:
|
The awesome version includes a lot of great plugins, configurations and color schemes that make Vim a lot better. To install it simply do following from your terminal:
|
||||||
|
|
||||||
git clone --depth=1 https://github.com/amix/vimrc.git ~/.vim_runtime
|
git clone --depth=1 https://github.com/amix/vimrc.git ~/.vim_runtime
|
||||||
sh ~/.vim_runtime/install_awesome_vimrc.sh
|
sh ~/.vim_runtime/install_awesome_vimrc.sh
|
||||||
|
|
||||||
|
### Install for multiple users
|
||||||
|
To install for multiple users, the repository needs to be cloned to a location accessible for all the intended users.
|
||||||
|
|
||||||
|
git clone --depth=1 https://github.com/amix/vimrc.git /opt/vim_runtime
|
||||||
|
sh ~/.vim_runtime/install_awesome_parameterized.sh /opt/vim_runtime user0 user1 user2
|
||||||
|
# to install for all users with home directories
|
||||||
|
sh ~/.vim_runtime/install_awesome_parameterized.sh /opt/vim_runtime --all
|
||||||
|
|
||||||
|
Naturally, `/opt/vim_runtime` can be any directory, as long as all the users specified have read access.
|
||||||
|
|
||||||
I also recommend using [the Hack font](http://sourcefoundry.org/hack/) (it's a free and awesome font designed for source code). The Awesome vimrc is already setup to try to use it.
|
I also recommend using [the Hack font](http://sourcefoundry.org/hack/) (it's a free and awesome font designed for source code). The Awesome vimrc is already setup to try to use it.
|
||||||
|
|
||||||
## How to install the Basic version?
|
## How to install the Basic version?
|
||||||
|
|
Loading…
Reference in a new issue