astronvim_config/plugins/user.lua
RingOfStorms (Joshua Bell) 13b8e437f4 updating my config
2023-03-21 14:16:19 -05:00

21 lines
435 B
Lua

return {
-- You can also add new plugins here as well:
-- Add plugins, the lazy syntax
-- "andweeb/presence.nvim",
-- {
-- "ray-x/lsp_signature.nvim",
-- event = "BufRead",
-- config = function()
-- require("lsp_signature").setup()
-- end,
-- },
{
"Pocco81/auto-save.nvim",
event = "BufEnter",
config = function()
require("auto-save").setup {
-- config
}
end
}
}