preparing to convert over to lua for nvim
This commit is contained in:
parent
9980596a65
commit
f371d214c1
5 changed files with 215 additions and 3 deletions
23
nvim/lua/packages.lua
Normal file
23
nvim/lua/packages.lua
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
-- Packages installed using 'packer', install using :PackerSync
|
||||
|
||||
require('packer').startup(function()
|
||||
use 'wbthomason/packer.nvim'
|
||||
use 'kyazdani42/nvim-web-devicons' -- for file icons
|
||||
use 'kyazdani42/nvim-tree.lua'
|
||||
use 'psliwka/vim-smoothie'
|
||||
-- use 'mattn/emmet-vim'
|
||||
-- use 'ap/vim-css-color'
|
||||
-- use 'airblade/vim-gitgutter'
|
||||
-- use 'ctrlpvim/ctrlp.vim' -- fuzzy find files
|
||||
-- use 'junegunn/fzf'--{ 'do': { -> fzf#install() } }
|
||||
use 'preservim/nerdcommenter'
|
||||
-- use 'Yggdroot/indentLine'
|
||||
-- use 'sheerun/vim-polyglot'
|
||||
use 'mg979/vim-visual-multi'-- {'branch': 'master'}
|
||||
use {'iamcco/markdown-preview.nvim', run = ':call mkdp#util#install'} -- {'do': { -> mkdp#util#install() }}
|
||||
use 'luochen1990/rainbow'
|
||||
-- use 'simeji/winresizer'
|
||||
use '907th/vim-auto-save'
|
||||
-- use 'itchyny/lightline.vim'
|
||||
-- use 'jremmen/vim-ripgrep'
|
||||
end)
|
||||
Loading…
Add table
Add a link
Reference in a new issue