Created
October 23, 2022 07:35
-
-
Save Shaam-K/69913a1cfec3648f90ad0380ae6a9bc1 to your computer and use it in GitHub Desktop.
My nvim pluggins (More to be done)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| " 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' | |
| " Status Bar | |
| Plug 'https://github.com/vim-airline/vim-airline' | |
| call plug#end() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment