summaryrefslogtreecommitdiff
path: root/lua/talha/packer.lua
blob: 411958e4457dd5e96f98fab8d6655a9109cca858 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
vim.cmd [[packadd packer.nvim]]

return require('packer').startup(function(use)
  -- Packer can manage itself
  use 'wbthomason/packer.nvim'

  use {
    'nvim-telescope/telescope.nvim', tag = '0.1.2',
    -- or                            , branch = '0.1.x',
    requires = { {'nvim-lua/plenary.nvim'} }
  }


  use({ 'nvim-treesitter/nvim-treesitter', run = ':TSUpdate' })

  -- colorschemes
  use {'Mofiqul/vscode.nvim'}

  use { "theprimeagen/harpoon" }

  use('mbbill/undotree')

  use('tpope/vim-fugitive')

end)