aboutsummaryrefslogtreecommitdiff
path: root/neovim/.config/nvim/lua/plugins.lua
blob: 5b28fbb27273c359599d906464271bf04d69983d (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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
-- Automatically run :PackerCompile whenever plugins.lua is updated with an autocommand:
vim.api.nvim_create_autocmd("BufWritePost", {
  group = vim.api.nvim_create_augroup("PACKER", { clear = true }),
  pattern = "plugins.lua",
  command = "source <afile> | PackerCompile",
})

return require("packer").startup(function(use)
  use("wbthomason/packer.nvim")
  use("nvim-lua/plenary.nvim")

  -- Color theme 
  use({
    "catppuccin/nvim",
    as = "catppuccin-theme",
    run = ":CatppuccinCompile",
    config = function() require("plugins.catppuccin") end,
  })

  --[[ use({
    "projekt0n/github-nvim-theme",
    config = function() require("plugins.github-theme") end,
  }) ]]

  -- Status line
  use({
    {
      "nvim-lualine/lualine.nvim",
      event = "BufEnter",
      config = function() require("plugins.lualine") end,
    },
    {
      "j-hui/fidget.nvim",
      after = "lualine.nvim",
      config = function() require("plugins.fidget") end,
    },
  })

  -- Better syntax highlighting
  use({
    {
      "nvim-treesitter/nvim-treesitter",
      event = "BufEnter",
      config = function() require("plugins.treesitter") end,
    },
    { 
      "nvim-treesitter/playground", 
      after = "nvim-treesitter" 
    },
    { 
      "nvim-treesitter/nvim-treesitter-refactor", 
      after = "nvim-treesitter" 
    },
    { 
      "nvim-treesitter/nvim-treesitter-textobjects", 
      after = "nvim-treesitter" 
    },
  })

  -- Git features
  use({
    "lewis6991/gitsigns.nvim",
    event = "BufEnter",
    config = function() require("plugins.gitsigns") end,
  })

  -- Automatic bracket pars
  use({
    "windwp/nvim-autopairs",
    event = "InsertCharPre",
    after = "nvim-cmp",
    config = function() require("plugins.pairs") end,
  })

  -- Comment utility
  use({
    "numToStr/Comment.nvim",
    event = "BufEnter",
    config = function() require("Comment").setup() end,
  })

  -- Fuzzy file picker
  use({
    {
      "nvim-telescope/telescope.nvim",
      config = function() require("plugins.telescope") end,
    },
    {
      "nvim-telescope/telescope-fzf-native.nvim",
      run = "make",
      after = "telescope.nvim",
      config = function() require("telescope").load_extension("fzf") end,
    },
  })

  -- Language Server Protocol
  use({
    {
      "neovim/nvim-lspconfig",
      -- event = "BufEnter",
      config = function() require("plugins.lsp") end,
    },
    {
      "williamboman/mason-lspconfig.nvim",
      after = "nvim-lspconfig",
    },
    {
      "williamboman/mason.nvim",
      after = "mason-lspconfig.nvim",
      config = function() require("plugins.mason") end,
    },
  })

  -- Completion framework
  use({
    {
      "hrsh7th/nvim-cmp",
      -- after = "nvim-lspconfig",
      -- event = "BufEnter",
      config = function() require("plugins.cmp") end,
    },
    {
      "hrsh7th/cmp-nvim-lsp",
      after = "nvim-cmp",
    },
    {
      "hrsh7th/cmp-vsnip",
      after = "nvim-cmp",
    },
    {
      "hrsh7th/cmp-path",
      after = "nvim-cmp",
    },
    {
      "hrsh7th/cmp-buffer",
      after = "nvim-cmp",
    },
    {
      "hrsh7th/vim-vsnip",
      after = "nvim-cmp",
    },
  })

  use({
    "simrat39/rust-tools.nvim",
    after = "nvim-cmp",
    config = function() require("plugins.rust-tools") end,
  })
end)