You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
495 B
31 lines
495 B
return require('packer').startup(function() |
|
use 'wbthomason/packer.nvim' |
|
|
|
use 'shaunsingh/nord.nvim' |
|
|
|
use { |
|
'nvim-lualine/lualine.nvim', |
|
requires = { 'kyazdani42/nvim-web-devicons', opt = true } |
|
} |
|
|
|
use 'preservim/nerdtree' |
|
|
|
use 'dcampos/nvim-snippy' |
|
|
|
use 'honza/vim-snippets' |
|
|
|
use { |
|
'lervag/vimtex', |
|
tag = 'v2.9', |
|
ft = 'tex' |
|
} |
|
|
|
use { |
|
'digitaltoad/vim-pug', |
|
ft = {'pug', 'vue'} |
|
} |
|
|
|
use 'neovim/nvim-lspconfig' |
|
|
|
use 'MunifTanjim/nui.nvim' |
|
end)
|
|
|