15 lines
380 B
Lua
15 lines
380 B
Lua
if vim.g.did_load_plugins_plugin then
|
|
return
|
|
end
|
|
vim.g.did_load_plugins_plugin = true
|
|
|
|
-- many plugins annoyingly require a call to a 'setup' function to be loaded,
|
|
-- even with default configs
|
|
|
|
require("nvim-autopairs").setup {}
|
|
require("dapui").setup()
|
|
-- require("copilot_cmp").setup()
|
|
require('nvim-surround').setup()
|
|
require('which-key').setup()
|
|
require('Comment').setup()
|