https://github.com/petitgrizzlies/myvim
I just want to share with you my vim's config
https://github.com/petitgrizzlies/myvim
configuration neovim vim
Last synced: about 2 months ago
JSON representation
I just want to share with you my vim's config
- Host: GitHub
- URL: https://github.com/petitgrizzlies/myvim
- Owner: petitgrizzlies
- License: gpl-3.0
- Created: 2016-03-26T08:26:58.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2017-01-14T17:10:25.000Z (over 9 years ago)
- Last Synced: 2025-02-21T10:44:02.376Z (over 1 year ago)
- Topics: configuration, neovim, vim
- Language: VimL
- Homepage:
- Size: 35.2 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# My (Neo) Vim
## Plugin manager
There is my **vimrc**. I use vim-plug as plugin manager. If it doesn't exist in your _.vim/plugged/autoload/_, it will be download with:
```bash
if empty(glob("~/.vim/autoload/plug.vim"))
:! curl -fLo ~/.vim/autoload/plug.vim --create-dirs https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
endif
```
**OR**
```bash
if empty(glob("~/.config/nvim/autoload/plug.vim"))
:! curl -fLo ~/.config/nvim/autoload/plug.vim --create-dirs https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
endif
```
Then you just need to run:
``` vimrc
:PlugInstall
```
and it will install all missing plugins in _~/.vim/plugged/_. You can change this default folder with this line:
``` vimrc
call plug#begin('~/.vim/plugged')
```
**OR**
``` vimrc
call plug#begin('~/.config/nvim/plugged')
```
## Installed plugin
-------------------
Currently I have this features:
* the nerdtree : an explorer file in the consol
* vim-airline : make my vim more beautiful
* supetab : tab completion
* auto-pairs : match the matching parenthesis
* deoplete : complete most of the langage
* tcomment : easy comment
* vim-indent-guides : display indentation level
* molokai : other vim theme
* tagbar : show your function like in a ide
* vim-go : go ide for vim
* neosnippet/neosnippet-snippets : the snippets for a lot of language