neovim vimscript confs
This commit is contained in:
parent
362352b6f4
commit
70d9e12380
17 changed files with 6396 additions and 0 deletions
2788
neovim_vimscriptonly/nvim/autoload/plug.vim
Normal file
2788
neovim_vimscriptonly/nvim/autoload/plug.vim
Normal file
File diff suppressed because it is too large
Load diff
2786
neovim_vimscriptonly/nvim/autoload/plug.vim.old
Normal file
2786
neovim_vimscriptonly/nvim/autoload/plug.vim.old
Normal file
File diff suppressed because it is too large
Load diff
18
neovim_vimscriptonly/nvim/autoload/vim-plug/plugins.vim
Normal file
18
neovim_vimscriptonly/nvim/autoload/vim-plug/plugins.vim
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
" auto-install vim-plug
|
||||
if empty(glob('~/.config/nvim/autoload/plug.vim'))
|
||||
silent !curl -fLo ~/.config/nvim/autoload/plug.vim --create-dirs
|
||||
\ https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
|
||||
"autocmd VimEnter * PlugInstall
|
||||
"autocmd VimEnter * PlugInstall | source $MYVIMRC
|
||||
endif
|
||||
|
||||
call plug#begin('~/.config/nvim/autoload/plugged')
|
||||
|
||||
" Better Syntax Support
|
||||
Plug 'sheerun/vim-polyglot'
|
||||
" File Explorer
|
||||
Plug 'scrooloose/NERDTree'
|
||||
" Auto pairs for '(' '[' '{'
|
||||
Plug 'jiangmiao/auto-pairs'
|
||||
|
||||
call plug#end()
|
||||
Loading…
Add table
Add a link
Reference in a new issue