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-09-20 15:46:27 +02:00
|
|
|
require("nvim-autopairs").setup {}
|
2024-03-06 23:07:22 +01:00
|
|
|
require("dapui").setup()
|
2024-09-18 21:55:56 +02: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()
|
2024-09-23 17:38:17 +02:00
|
|
|
require("better_escape").setup()
|
|
|
|
require("todo-comments").setup()
|
2024-09-23 23:22:44 +02:00
|
|
|
require("toggleterm").setup()
|
2024-10-01 12:55:40 +02:00
|
|
|
require("trouble").setup()
|