aboutsummaryrefslogtreecommitdiff
path: root/nvim/custom/plugins.lua
diff options
context:
space:
mode:
Diffstat (limited to 'nvim/custom/plugins.lua')
-rw-r--r--nvim/custom/plugins.lua20
1 files changed, 20 insertions, 0 deletions
diff --git a/nvim/custom/plugins.lua b/nvim/custom/plugins.lua
new file mode 100644
index 0000000..8ad68d1
--- /dev/null
+++ b/nvim/custom/plugins.lua
@@ -0,0 +1,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