aboutsummaryrefslogtreecommitdiff
path: root/nvim/custom/plugins.lua
blob: b958de26a0dac77d555d830a7176a3d4965a7822 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
local plugins = {
  {
   "tpope/vim-fugitive",
   lazy = false
  },
  {
    "stevearc/conform.nvim",
    --  for users those who want auto-save conform + lazyloading!
    -- event = "BufWritePre"
    lazy = false,
    config = function()
      require "custom.configs.conform"
    end,
  },
  {
    'Exafunction/codeium.vim',
    lazy = false
  }
}
return plugins