From 8ec6a9d1632583b817ac4d1989e814c64d533208 Mon Sep 17 00:00:00 2001 From: CaseyStratton Date: Sun, 30 Apr 2023 15:10:14 -0500 Subject: [PATCH] add other plugins --- lua/custom/plugins/autopairs.lua | 6 ++++++ lua/custom/plugins/cargo.lua | 3 +++ lua/custom/plugins/copilot.lua | 3 +++ lua/custom/plugins/rainbow-parentheses.lua | 3 +++ 4 files changed, 15 insertions(+) create mode 100644 lua/custom/plugins/autopairs.lua create mode 100644 lua/custom/plugins/cargo.lua create mode 100644 lua/custom/plugins/copilot.lua create mode 100644 lua/custom/plugins/rainbow-parentheses.lua diff --git a/lua/custom/plugins/autopairs.lua b/lua/custom/plugins/autopairs.lua new file mode 100644 index 00000000..bc4770f2 --- /dev/null +++ b/lua/custom/plugins/autopairs.lua @@ -0,0 +1,6 @@ +return { + "windwp/nvim-autopairs", + config = function() + require("nvim-autopairs").setup {} + end, +} diff --git a/lua/custom/plugins/cargo.lua b/lua/custom/plugins/cargo.lua new file mode 100644 index 00000000..ba8d2286 --- /dev/null +++ b/lua/custom/plugins/cargo.lua @@ -0,0 +1,3 @@ +return { + 'timonv/vim-cargo', +} diff --git a/lua/custom/plugins/copilot.lua b/lua/custom/plugins/copilot.lua new file mode 100644 index 00000000..8e490ed2 --- /dev/null +++ b/lua/custom/plugins/copilot.lua @@ -0,0 +1,3 @@ +return { + 'github/copilot.vim', +} diff --git a/lua/custom/plugins/rainbow-parentheses.lua b/lua/custom/plugins/rainbow-parentheses.lua new file mode 100644 index 00000000..d1a53b1b --- /dev/null +++ b/lua/custom/plugins/rainbow-parentheses.lua @@ -0,0 +1,3 @@ +return { + 'junegunn/rainbow_parentheses.vim', +}