31 lines
672 B
VimL
31 lines
672 B
VimL
|
" Load plugins
|
||
|
call plug#begin()
|
||
|
|
||
|
" CodeStats and Airline
|
||
|
Plug 'https://gitlab.com/code-stats/code-stats-vim.git'
|
||
|
Plug 'vim-airline/vim-airline'
|
||
|
|
||
|
" Syntax highlighters
|
||
|
Plug 'tikhomirov/vim-glsl'
|
||
|
|
||
|
" Treesitter things
|
||
|
Plug 'nvim-treesitter/nvim-treesitter', {'do': ':TSUpdate'}
|
||
|
|
||
|
" Language server protocol
|
||
|
Plug 'neovim/nvim-lspconfig'
|
||
|
|
||
|
" Autocompletion shenanigans
|
||
|
Plug 'hrsh7th/cmp-nvim-lsp'
|
||
|
Plug 'hrsh7th/cmp-buffer'
|
||
|
Plug 'hrsh7th/cmp-path'
|
||
|
Plug 'hrsh7th/cmp-cmdline'
|
||
|
Plug 'hrsh7th/nvim-cmp'
|
||
|
Plug 'hrsh7th/cmp-vsnip'
|
||
|
Plug 'hrsh7th/vim-vsnip'
|
||
|
Plug 'petertriho/cmp-git'
|
||
|
|
||
|
Plug 'elixir-tools/elixir-tools.nvim', {'tag': 'stable'}
|
||
|
Plug 'nvim-lua/plenary.nvim'
|
||
|
|
||
|
call plug#end()
|