Skip to content

petitgrizzlies/myVim

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

27 Commits
 
 
 
 
 
 
 
 

Repository files navigation

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:

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

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:

:PlugInstall

and it will install all missing plugins in ~/.vim/plugged/. You can change this default folder with this line:

call plug#begin('~/.vim/plugged')

OR

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

About

I just want to share with you my vim's config

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published