diff options
| author | Trey Bastian <hello@treybastian.com> | 2025-10-29 11:52:37 +0000 |
|---|---|---|
| committer | Trey Bastian <hello@treybastian.com> | 2025-10-29 11:52:37 +0000 |
| commit | 019a93697352f442edfbf7b12abcaa0ff4293cfd (patch) | |
| tree | 357523f499c13438cc61300f1812b4215a526cb1 /lua/config/plugins.lua | |
new and improved nvim config
Diffstat (limited to 'lua/config/plugins.lua')
| -rw-r--r-- | lua/config/plugins.lua | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/lua/config/plugins.lua b/lua/config/plugins.lua new file mode 100644 index 0000000..7d3ebda --- /dev/null +++ b/lua/config/plugins.lua @@ -0,0 +1,11 @@ +-- plugins that require no configuration +vim.pack.add({ + "https://github.com/tpope/vim-fugitive", + "https://github.com/tpope/vim-eunuch", + "https://github.com/jessarcher/vim-heritage", + "https://github.com/windwp/nvim-autopairs", + "https://github.com/kylechui/nvim-surround", +}) + +require("nvim-autopairs").setup() +require("nvim-surround").setup() |
