2024-03-06 02:24:31 +01:00
|
|
|
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
|
|
|
|
|
2024-03-06 23:07:22 +01:00
|
|
|
require("dapui").setup()
|
2024-03-06 18:55:22 +01:00
|
|
|
require("copilot_cmp").setup()
|
2024-03-06 02:24:31 +01:00
|
|
|
require('nvim-surround').setup()
|
|
|
|
require('which-key').setup()
|
2024-09-18 02:42:21 +02:00
|
|
|
require('Comment').setup()
|