diff options
| author | Chris <[email protected]> | 2021-03-17 21:02:27 -0400 | 
|---|---|---|
| committer | Chris <[email protected]> | 2021-03-17 21:02:27 -0400 | 
| commit | c0dba81c2ed80dbf9311dd38114b3d54a0b35086 (patch) | |
| tree | f0563523ed6fbc4aca0512df7dfaeac083ffb22a /lua | |
| parent | 6ed2437edbbc49f03df1023f4dae723cc7ba77d3 (diff) | |
formatting
Diffstat (limited to 'lua')
| -rw-r--r-- | lua/plugins.lua | 214 | 
1 files changed, 107 insertions, 107 deletions
| diff --git a/lua/plugins.lua b/lua/plugins.lua index 11bed6dc..bb1d61e5 100644 --- a/lua/plugins.lua +++ b/lua/plugins.lua @@ -1,120 +1,120 @@ - -  local execute = vim.api.nvim_command  local fn = vim.fn -local install_path = fn.stdpath('data')..'/site/pack/packer/opt/packer.nvim' +local install_path = fn.stdpath('data') .. '/site/pack/packer/opt/packer.nvim'  if fn.empty(fn.glob(install_path)) > 0 then -  execute('!git clone https://github.com/wbthomason/packer.nvim '..install_path) -  execute 'packadd packer.nvim' +    execute('!git clone https://github.com/wbthomason/packer.nvim ' .. install_path) +    execute 'packadd packer.nvim'  end  vim.cmd [[packadd packer.nvim]]  vim.cmd 'autocmd BufWritePost plugins.lua PackerCompile' -- Auto compile when there are changes in plugins.lua -  return require('packer').startup(function(use) -  -- Packer can manage itself as an optional plugin -  use {'wbthomason/packer.nvim', opt = true} - -  -- Information -  use 'nanotee/nvim-lua-guide' - -  -- Quality of life improvements -  use 'norcalli/nvim_utils' - -  -- LSP -  use 'neovim/nvim-lspconfig' -  use 'glepnir/lspsaga.nvim' -  use 'onsails/lspkind-nvim' -  use 'kosayoda/nvim-lightbulb' -  use 'mfussenegger/nvim-jdtls' - -  -- Debugging -  use 'mfussenegger/nvim-dap' - -  -- Autocomplete -  use 'hrsh7th/nvim-compe' -  use 'hrsh7th/vim-vsnip' -  use 'hrsh7th/vim-vsnip-integ' -  use 'honza/vim-snippets' -  -- use 'epilande/vim-react-snippets' -  -- use 'xabikos/vscode-javascript' -  -- use 'cstrap/python-snippets' -  -- use 'ylcnfrht/vscode-python-snippet-pack' -  -- use 'golang/vscode-go' -  -- use 'rust-lang/vscode-rust' -  -- use 'SirVer/ultisnips' -  -- use 'norcalli/snippets.nvim' - - -  -- Treesitter -  use { 'nvim-treesitter/nvim-treesitter', run = ':TSUpdate' } -  use 'nvim-treesitter/playground' -  use 'p00f/nvim-ts-rainbow' - -  -- Icons -  use 'kyazdani42/nvim-web-devicons' -  use 'ryanoasis/vim-devicons' - -  -- Status Line and Bufferline -  use 'glepnir/galaxyline.nvim' -  -- use {'akinsho/nvim-bufferline.lua', requires = 'kyazdani42/nvim-web-devicons'} -  use 'romgrk/barbar.nvim' - -  -- Telescope -  use 'nvim-lua/popup.nvim' -  use 'nvim-lua/plenary.nvim' -  use 'nvim-telescope/telescope.nvim' -  use 'nvim-telescope/telescope-media-files.nvim' - -  -- Explorer -  use 'kyazdani42/nvim-tree.lua' - - -  -- Color -  use 'christianchiarulli/nvcode-color-schemes.vim' -  use 'norcalli/nvim-colorizer.lua' - -  -- Git -  use 'TimUntersberger/neogit' -  use {'lewis6991/gitsigns.nvim', requires = { 'nvim-lua/plenary.nvim' } } -  use 'f-person/git-blame.nvim' -  use 'tpope/vim-fugitive' -  use 'tpope/vim-rhubarb' - -  -- Easily Create Gists -  use 'mattn/vim-gist' -  use 'mattn/webapi-vim' - -  -- General Plugins -  use 'windwp/nvim-autopairs' -  use 'kevinhwang91/nvim-bqf' -  use 'unblevable/quick-scope' -  use 'airblade/vim-rooter' -  use 'kevinhwang91/rnvimr' -  use 'mhinz/vim-startify' -  use 'metakirby5/codi.vim' -  use 'psliwka/vim-smoothie' -  use {'iamcco/markdown-preview.nvim', run = 'cd app && npm install' } -  use 'moll/vim-bbye' -  use 'turbio/bracey.vim' -  use 'AndrewRadev/tagalong.vim' -  use 'alvan/vim-closetag' -  use { 'glacambre/firenvim', run = function() vim.fn['firenvim#install'](1) end } -  use 'liuchengxu/vim-which-key' -  use 'voldikss/vim-floaterm' -  use 'liuchengxu/vista.vim' -  use 'terrortylor/nvim-comment' -  use 'bfredl/nvim-miniyank' -  use 'brooth/far.vim' -  use 'junegunn/goyo.vim' -  use 'andymass/vim-matchup' -  use 'tpope/vim-sleuth' -  use 'phaazon/hop.nvim' -  use 'gennaro-tedesco/nvim-jqx' -  -- use 'RRethy/vim-illuminate' -  -- use 'b3nj5m1n/kommentary' +    -- Packer can manage itself as an optional plugin +    use {'wbthomason/packer.nvim', opt = true} + +    -- Information +    use 'nanotee/nvim-lua-guide' + +    -- Quality of life improvements +    use 'norcalli/nvim_utils' + +    -- LSP +    use 'neovim/nvim-lspconfig' +    use 'glepnir/lspsaga.nvim' +    use 'onsails/lspkind-nvim' +    use 'kosayoda/nvim-lightbulb' +    use 'mfussenegger/nvim-jdtls' + +    -- Debugging +    use 'mfussenegger/nvim-dap' + +    -- Autocomplete +    use 'hrsh7th/nvim-compe' +    use 'hrsh7th/vim-vsnip' +    use 'hrsh7th/vim-vsnip-integ' +    use 'honza/vim-snippets' +    -- use 'epilande/vim-react-snippets' +    -- use 'xabikos/vscode-javascript' +    -- use 'cstrap/python-snippets' +    -- use 'ylcnfrht/vscode-python-snippet-pack' +    -- use 'golang/vscode-go' +    -- use 'rust-lang/vscode-rust' +    -- use 'SirVer/ultisnips' +    -- use 'norcalli/snippets.nvim' + +    -- Treesitter +    use {'nvim-treesitter/nvim-treesitter', run = ':TSUpdate'} +    use 'nvim-treesitter/playground' +    use 'p00f/nvim-ts-rainbow' + +    -- Icons +    use 'kyazdani42/nvim-web-devicons' +    use 'ryanoasis/vim-devicons' + +    -- Status Line and Bufferline +    use 'glepnir/galaxyline.nvim' +    -- use {'akinsho/nvim-bufferline.lua', requires = 'kyazdani42/nvim-web-devicons'} +    use 'romgrk/barbar.nvim' + +    -- Telescope +    use 'nvim-lua/popup.nvim' +    use 'nvim-lua/plenary.nvim' +    use 'nvim-telescope/telescope.nvim' +    use 'nvim-telescope/telescope-media-files.nvim' + +    -- Explorer +    use 'kyazdani42/nvim-tree.lua' + +    -- Color +    use 'christianchiarulli/nvcode-color-schemes.vim' +    use 'norcalli/nvim-colorizer.lua' + +    -- Git +    use 'TimUntersberger/neogit' +    use {'lewis6991/gitsigns.nvim', requires = {'nvim-lua/plenary.nvim'}} +    use 'f-person/git-blame.nvim' +    use 'tpope/vim-fugitive' +    use 'tpope/vim-rhubarb' + +    -- Easily Create Gists +    use 'mattn/vim-gist' +    use 'mattn/webapi-vim' + +    -- General Plugins +    use 'windwp/nvim-autopairs' +    use 'kevinhwang91/nvim-bqf' +    use 'unblevable/quick-scope' +    use 'airblade/vim-rooter' +    use 'kevinhwang91/rnvimr' +    use 'mhinz/vim-startify' +    use 'metakirby5/codi.vim' +    use 'psliwka/vim-smoothie' +    use {'iamcco/markdown-preview.nvim', run = 'cd app && npm install'} +    use 'moll/vim-bbye' +    use 'turbio/bracey.vim' +    use 'AndrewRadev/tagalong.vim' +    use 'alvan/vim-closetag' +    use { +        'glacambre/firenvim', +        run = function() +            vim.fn['firenvim#install'](1) +        end +    } +    use 'liuchengxu/vim-which-key' +    use 'voldikss/vim-floaterm' +    use 'liuchengxu/vista.vim' +    use 'terrortylor/nvim-comment' +    use 'bfredl/nvim-miniyank' +    use 'brooth/far.vim' +    use 'junegunn/goyo.vim' +    use 'andymass/vim-matchup' +    use 'tpope/vim-sleuth' +    use 'phaazon/hop.nvim' +    use 'gennaro-tedesco/nvim-jqx' +    -- use 'RRethy/vim-illuminate' +    -- use 'b3nj5m1n/kommentary'  end) | 
