Create packer.lua
This commit is contained in:
parent
54264896c1
commit
189dce1e06
1 changed files with 38 additions and 0 deletions
38
neovim/lua/rf/packer.lua
Normal file
38
neovim/lua/rf/packer.lua
Normal file
|
@ -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…
Reference in a new issue