nix.nvim/nvim/plugin/plugins.lua
2024-03-06 02:24:31 +01:00

11 lines
259 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-surround').setup()
require('which-key').setup()