https://github.com/elirex/vim-configure
vim configure
https://github.com/elirex/vim-configure
vim
Last synced: 20 days ago
JSON representation
vim configure
- Host: GitHub
- URL: https://github.com/elirex/vim-configure
- Owner: elirex
- Created: 2014-12-06T14:26:56.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2022-08-15T15:43:34.000Z (almost 4 years ago)
- Last Synced: 2023-02-27T06:36:33.295Z (over 3 years ago)
- Topics: vim
- Language: Vim script
- Size: 4.08 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Vim Configure
============

## Installation
You need to execute command the following:
```shellscript
$ git clone --recurse-submodules https://github.com/elirex/vim-configure.git .vim
$ ln -s ~/.vim/vimrc ~/.vimrc
```
or
```shellscript
$ git clone --recurse-submodules https://github.com/elirex/vim-configure.git .vim
$ chmod +x ~/.vim/install
```
## Setup Powerline
### Install powerline
```shellscript
pip3 install powerline-status
```
### Setup fonts
* Install
```
$ git clone https://github.com/powerline/fonts.git --depth=1
$ cd fonts
$ ./install.sh
$ cd ..
$ rm -rf fonts
```
* Uninstall
```
$ cd fonts
$ uninstall.sh
```
### Setup on Vim
Execute the below command in VIM
```
PlugInstall
```
## Plugin
- [nerdtree](https://github.com/scrooloose/nerdtree) - Explore your filesystem, open files and directories.
- [indentLine](https://github.com/Yggdroot/indentLine) - This plugin is used for displaying thin vertical lines at each indentation level.
- [YouCompleteMe](https://github.com/Valloric/YouCompleteMe#python-semantic-completion) - YouCompleteMe is powerful code complete plugin.
- [powerline](https://github.com/powerline/powerline) - This is a powerful statusline plugin.
These plugins are not original, I make some change to meet my needs.