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

66 lines
1.5 KiB
Lua
Raw Permalink 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()
2023-09-18 20:16:35 -05:00
require("presence").setup {
2023-09-10 15:58:10 -05:00
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",
2023-09-18 20:16:35 -05:00
}
2023-09-10 15:58:10 -05:00
end,
},
2023-12-07 12:58:46 -06:00
-- Catppuccin colorscheme plugin
"catppuccin/nvim",
2023-09-10 15:58:10 -05:00
-- Todo color comments plugin
{
"folke/todo-comments.nvim",
dependencies = { "nvim-lua/plenary.nvim" },
opts = {
keywords = {
2023-09-18 20:16:35 -05:00
TODO = { icon = "✔️", color = "info" },
HACK = { icon = "🔥", color = "warning" },
WARN = { icon = "⚠️", color = "warning" },
FIXME = { icon = "🔨", color = "danger" },
},
2023-09-10 15:58:10 -05:00
},
lazy = false,
},
2023-09-18 20:16:35 -05:00
-- Sticky scroll (context) plugin
{
"nvim-treesitter/nvim-treesitter-context",
config = function()
require("treesitter-context").setup {
enable = true,
max_lines = 5,
zindex = 20,
trim_scope = "outer",
line_numbers = true,
min_window_height = 0,
multiline_threshold = 20,
mode = "topline",
}
end,
},
{
"amrbashir/nvim-docs-view",
opt = true,
cmd = { "DocsViewToggle" },
config = function()
require("docs-view").setup {
position = "bottom",
width = 60,
}
end,
},
2023-09-10 13:22:56 -05:00
}