Skip to content

Instantly share code, notes, and snippets.

@msanroman
Created April 14, 2022 19:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save msanroman/97aef745f5f4cef1d8d32184835ebdc0 to your computer and use it in GitHub Desktop.
Save msanroman/97aef745f5f4cef1d8d32184835ebdc0 to your computer and use it in GitHub Desktop.
Neovim Plugin list
" ===========================
" PLUGINS
" ===========================
call plug#begin('~/.vim/plugged')
" === Editing Plugins === "
"
" .editorconfig
Plug 'editorconfig/editorconfig-vim'
" Commenting
Plug 'tpope/vim-commentary' " Commenting
" Surround
Plug 'tpope/vim-surround' " Adds surrounds actions
" Repeat
Plug 'tpope/vim-repeat'
" Trailing whitespace highlighting & automatic fixing
Plug 'ntpeters/vim-better-whitespace'
" auto-close plugin
Plug 'rstacruz/vim-closer'
" Intellisense Engine
Plug 'neoclide/coc.nvim', {'branch': 'release'}
" GitHub Copilot
" Plug 'github/copilot.vim'
" Tmux/Neovim movement integration
Plug 'christoomey/vim-tmux-navigator'
" === Git Plugins === "
" Enable git changes to be shown in sign column
Plug 'tpope/vim-fugitive'
Plug 'tpope/vim-rhubarb'
" === UI === "
" File explorer
Plug 'scrooloose/nerdtree'
Plug 'nvim-treesitter/nvim-treesitter', {'do': ':TSUpdate'} " We recommend updating the parsers on update
" Telescope
Plug 'nvim-lua/plenary.nvim'
Plug 'nvim-lua/popup.nvim'
Plug 'nvim-telescope/telescope.nvim'
Plug 'nvim-telescope/telescope-fzy-native.nvim'
" Colorscheme
"
Plug 'dracula/vim', { 'as': 'dracula' }
Plug 'EdenEast/nightfox.nvim'
Plug 'gruvbox-community/gruvbox'
Plug 'luisiacc/gruvbox-baby'
Plug 'AhmedAbdulrahman/vim-aylin'
Plug 'ayu-theme/ayu-vim'
" Graphql
Plug 'jparise/vim-graphql'
" Icons
Plug 'ryanoasis/vim-devicons'
" " Auto-expands current split
" Plug 'roman/golden-ratio'
" Preview colors in vim
Plug 'ap/vim-css-color'
Plug 'amix/open_file_under_cursor.vim'
" Plug 'ruanyl/vim-gh-line'
Plug 'janko/vim-test'
" JSX & Typescript
Plug 'pangloss/vim-javascript'
Plug 'leafgarland/typescript-vim'
Plug 'peitalin/vim-jsx-typescript'
" Terminal
Plug 'voldikss/vim-floaterm'
" Snippets
Plug 'SirVer/ultisnips'
Plug 'mlaursen/vim-react-snippets'
"
" Initialize plugin system
call plug#end()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment