30 lines
721 B
VimL
30 lines
721 B
VimL
call plug#begin(stdpath('data') . '/plugged')
|
|
Plug 'preservim/nerdtree'
|
|
Plug 'tpope/vim-fugitive'
|
|
Plug 'junegunn/fzf.vim'
|
|
Plug 'tpope/vim-surround'
|
|
Plug 'mg979/vim-visual-multi'
|
|
" Plug 'ndmitchell/ghcid', { 'rtp': 'plugins/nvim' }
|
|
Plug 'luochen1990/rainbow'
|
|
" Plug 'wlangstroth/vim-racket'
|
|
Plug 'sirver/ultisnips'
|
|
Plug 'lervag/vimtex'
|
|
Plug 'tpope/vim-commentary'
|
|
|
|
" LSP Support
|
|
Plug 'neovim/nvim-lspconfig'
|
|
Plug 'williamboman/mason.nvim'
|
|
Plug 'williamboman/mason-lspconfig.nvim'
|
|
|
|
" Autocompletion
|
|
Plug 'hrsh7th/nvim-cmp'
|
|
Plug 'hrsh7th/cmp-nvim-lsp'
|
|
Plug 'L3MON4D3/LuaSnip'
|
|
|
|
Plug 'simrat39/rust-tools.nvim'
|
|
|
|
" Debugging
|
|
Plug 'mfussenegger/nvim-dap'
|
|
Plug 'rcarriga/nvim-dap-ui'
|
|
Plug 'nvim-neotest/nvim-nio'
|
|
call plug#end()
|