Create packer.lua

main
Rawley Fowler 2 years ago committed by GitHub
parent 54264896c1
commit 189dce1e06
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -0,0 +1,38 @@
vim.cmd [[packadd packer.nvim]]
return require('packer').startup(function()
-- Packer
use 'wbthomason/packer.nvim'
-- Color theme/aesthetics
use 'beikome/cosme.vim'
use 'vim-airline/vim-airline'
use 'vim-airline/vim-airline-themes'
use 'ajmwagar/vim-emoticons'
use 'ap/vim-buftabline'
-- tpope
use 'tpope/vim-surround'
use 'tpope/vim-rails'
-- LSP
use 'neovim/nvim-lsp'
use 'neovim/nvim-lspconfig'
use 'hrsh7th/nvim-cmp'
use 'hrsh7th/cmp-buffer'
use 'hrsh7th/cmp-nvim-lsp'
use 'saadparwaiz1/cmp_luasnip'
use 'l3mon4d3/luasnip'
use 'onsails/lspkind.nvim'
-- Others
use ('junegunn/fzf', { run = function() vim.fn['fzf#install'](0) end })
use 'junegunn/fzf.vim'
use 'ap/vim-css-color'
use 'jiangmiao/auto-pairs'
use 'docunext/closetag.vim'
if packer_bootstrap then
require('packer').sync()
end
end)
Loading…
Cancel
Save