aboutsummaryrefslogtreecommitdiff
path: root/.config/nvim/lua/plugin/packer.lua
blob: 961af133bc709c03efc8901c09afe529cbb8dc08 (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
26
27
28
29
return require("packer").startup(function(use)
  use {"wbthomason/packer.nvim"}
  use {"windwp/nvim-autopairs"}

  use {
    "nvim-telescope/telescope.nvim",
    requires = {
      { "nvim-lua/plenary.nvim"}
    },
  }

  use {"lewis6991/gitsigns.nvim"}
  use {"numToStr/Comment.nvim"}

  use {"williamboman/mason.nvim"}
  use {"neovim/nvim-lspconfig"}
  use {"hrsh7th/nvim-cmp"}
  use {"hrsh7th/cmp-buffer"}
  use {"hrsh7th/cmp-path"}
  use {"hrsh7th/cmp-nvim-lsp"}
  use {"hrsh7th/cmp-nvim-lua"}

  use {"michaeljsmith/vim-indent-object"}

  use {
    "nvim-treesitter/nvim-treesitter",
    run = ":TSUpdate"
  }
end)