Skip to content

Instantly share code, notes, and snippets.

@Shaam-K
Created October 23, 2022 07:35
Show Gist options
  • Select an option

  • Save Shaam-K/69913a1cfec3648f90ad0380ae6a9bc1 to your computer and use it in GitHub Desktop.

Select an option

Save Shaam-K/69913a1cfec3648f90ad0380ae6a9bc1 to your computer and use it in GitHub Desktop.
My nvim pluggins (More to be done)
" 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