Skip to content

Commit

Permalink
Merge pull request #8 from ashincoder/dev
Browse files Browse the repository at this point in the history
Added lazy loading functions.
  • Loading branch information
hackorum committed Jul 8, 2021
2 parents 5ff120e + d1bfc1a commit 7c0a499
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions lua/plugins/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ return packer.startup(function(use)
use 'glepnir/dashboard-nvim'

-- Tree-Sitter
use {'nvim-treesitter/nvim-treesitter', run = ':TSUpdate'}
use {'nvim-treesitter/nvim-treesitter', event = 'BufRead,' run = ':TSUpdate'}
use 'p00f/nvim-ts-rainbow'
use 'windwp/nvim-ts-autotag'

Expand All @@ -34,11 +34,11 @@ return packer.startup(function(use)
use 'arcticicestudio/nord-vim'

-- LSP and Autocomplete
use 'neovim/nvim-lspconfig'
use {'neovim/nvim-lspconfig', event = "BufRead"}
use 'glepnir/lspsaga.nvim'
use 'hrsh7th/nvim-compe'
use {'hrsh7th/nvim-compe', event = "InsertEnter"}
use 'hrsh7th/vim-vsnip'
use 'windwp/nvim-autopairs'
use {'windwp/nvim-autopairs', after = "nvim-compe"}

-- Version Control
use {'TimUntersberger/neogit', requires = 'nvim-lua/plenary.nvim', config = "require('neogit').setup {}"}
Expand All @@ -52,14 +52,14 @@ return packer.startup(function(use)

-- Navigation
use {'nvim-telescope/telescope.nvim', requires = {{'nvim-lua/popup.nvim'}, {'nvim-lua/plenary.nvim'}}}
use 'kyazdani42/nvim-tree.lua'
use {'kyazdani42/nvim-tree.lua', cmd = "NvimTreeToggle"}
use 'phaazon/hop.nvim'

-- Other
use {'terrortylor/nvim-comment', config = "require('nvim_comment').setup()"}
use {'terrortylor/nvim-comment', cmd = "CommentToggle", config = "require('nvim_comment').setup()"}
use 'monaqa/dial.nvim'
use 'lukas-reineke/format.nvim'
use 'folke/which-key.nvim'
use {'folke/which-key.nvim', event = "BufWinEnter"}

for _, plugin in pairs(Vapour.plugins.user) do
use(plugin)
Expand Down

0 comments on commit 7c0a499

Please sign in to comment.