blob: 5b9bc6bc051488e7402fe7edd322630f64ebab39 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
-- This file can be loaded by calling `lua require('plugins')` from your init.vim
-- Only required if you have packer configured as `opt`
vim.cmd [[packadd packer.nvim]]
return require('packer').startup(function(use)
-- Packer can manage itself
use 'wbthomason/packer.nvim'
-- Nord color scheme
use 'folke/tokyonight.nvim'
-- Completion
use {'neoclide/coc.nvim', branch = 'release'}
use {'ap/vim-css-color'}
use {'jiangmiao/auto-pairs'}
use {'preservim/nerdcommenter'}
use { 'dhruvasagar/vim-table-mode', ft = {'markdown', 'markdown.pandoc'} }
use { 'vim-pandoc/vim-pandoc-syntax', ft = { 'markdown', 'markdown.pandoc' } }
use { 'lervag/vimtex', ft = { 'tex' } }
use { 'junegunn/fzf', run = ":call fzf#install()" }
use { 'junegunn/fzf.vim' }
use { 'honza/vim-snippets' }
use { 'SirVer/ultisnips' }
use {'tpope/vim-surround'}
use {'junegunn/vim-easy-align'}
use { 'tpope/vim-fugitive', ft = {'cpp', 'c'} }
use { 'nvim-treesitter/nvim-treesitter', run = ':TSUpdate' }
end)
|