nix.nvim/nvim/plugin/plugins.lua

17 lines
446 B
Lua
Raw Normal View History

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
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()
require('Comment').setup()
require("better_escape").setup()
require("todo-comments").setup()