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.

40 lines
727 B

2 years ago
return require('packer').startup(function()
use 'wbthomason/packer.nvim'
2 years ago
-- Look and feel --
2 years ago
use 'shaunsingh/nord.nvim'
use {
'nvim-lualine/lualine.nvim',
requires = { 'kyazdani42/nvim-web-devicons', opt = true }
}
2 years ago
use 'preservim/nerdtree'
2 years ago
2 years ago
-- Snippets --
use 'dcampos/nvim-snippy'
use 'honza/vim-snippets'
2 years ago
-- Languages --
2 years ago
use {
'lervag/vimtex',
tag = 'v2.9',
ft = 'tex'
}
use {
'digitaltoad/vim-pug',
ft = {'pug', 'vue'}
}
2 years ago
-- LSP and completions --
use 'neovim/nvim-lspconfig'
2 years ago
use 'hrsh7th/nvim-cmp'
use 'hrsh7th/cmp-nvim-lsp'
use 'dcampos/cmp-snippy' -- Completions for snippets
2 years ago
-- Another tools --
use 'MunifTanjim/nui.nvim' -- UI framework
2 years ago
end)