This repository has been archived on 2024-07-18. You can view files and clone it, but cannot push or open issues or pull requests.
nvim-user/plugins/user.lua

36 lines
892 B
Lua
Raw Normal View History

2023-09-10 13:22:56 -05:00
return {
2023-09-10 15:58:10 -05:00
-- You can also add new plugins here as well, using the lazy syntax:
-- Discord rich presence plugin
{
"andweeb/presence.nvim",
config = function()
require("presence").setup({
auto_update = true,
show_time = true,
client_id = "242049919999803395",
editing_text = "Doing the thing on %s",
file_explorer_text = "Scratching my head in %s",
git_commit_text = "Signing my soul away",
})
end,
},
-- Tokyonight colorscheme plugin
"folke/tokyonight.nvim",
-- Todo color comments plugin
{
"folke/todo-comments.nvim",
dependencies = { "nvim-lua/plenary.nvim" },
opts = {
keywords = {
TODO = {icon = "✔️", color = "info"},
HACK = {icon = "🔥", color = "warning"},
WARN = {icon = "⚠️", color = "warning"},
}
},
lazy = false,
},
2023-09-10 13:22:56 -05:00
}