aboutsummaryrefslogtreecommitdiff
path: root/nvim/custom/plugins.lua
blob: 8ad68d15fae8915e6b81ed3d9cf8209903792ad3 (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