2024-10-09 17:13:16 -07:00
|
|
|
return {
|
2024-10-10 00:48:10 -07:00
|
|
|
require("plugins.blink-cmp"),
|
|
|
|
require("plugins.telescope"),
|
|
|
|
require("plugins.oil"),
|
|
|
|
require("plugins.harpoon"),
|
|
|
|
require("plugins.lualine"),
|
|
|
|
require("plugins.conform"),
|
2024-10-10 01:14:12 -07:00
|
|
|
require("plugins.lsp-progress"),
|
|
|
|
require("plugins.gitsigns"),
|
|
|
|
require("plugins.autopairs"),
|
2024-10-10 13:23:08 -07:00
|
|
|
require("plugins.trouble"),
|
2024-10-10 14:18:39 -07:00
|
|
|
require("plugins.render-markdown"),
|
2024-10-10 13:23:08 -07:00
|
|
|
require("plugins.toggleterm"),
|
2024-10-29 23:05:19 -07:00
|
|
|
require("plugins.by-lang.latex"),
|
2024-10-10 13:23:08 -07:00
|
|
|
{ "telescope-ui-select.nvim" },
|
2024-10-11 12:28:29 -07:00
|
|
|
{ "vim-wakatime" },
|
2024-10-10 17:54:49 -07:00
|
|
|
{ "vim-sleuth" },
|
2024-10-10 00:48:10 -07:00
|
|
|
{
|
|
|
|
"nvim-lspconfig",
|
|
|
|
event = "BufEnter",
|
2024-10-11 21:08:07 -07:00
|
|
|
after = require("lsp").setup,
|
2024-10-10 00:48:10 -07:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"which-key.nvim",
|
|
|
|
after = function()
|
|
|
|
require("which-key").setup({
|
|
|
|
delay = 1000,
|
|
|
|
})
|
|
|
|
end,
|
|
|
|
},
|
|
|
|
{ "nvim-web-devicons" },
|
2024-10-10 13:23:08 -07:00
|
|
|
{ "rose-pine", priority = 100 },
|
2024-10-10 00:48:10 -07:00
|
|
|
{
|
2024-10-10 13:23:08 -07:00
|
|
|
"markdown-preview.nvim",
|
|
|
|
filetypes = { "markdown" },
|
2024-10-10 00:48:10 -07:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"typst-preview",
|
2024-10-10 01:14:12 -07:00
|
|
|
filetypes = { "*.typ" },
|
2024-10-10 00:48:10 -07:00
|
|
|
after = function()
|
|
|
|
require("typst-preview").setup({
|
|
|
|
dependencies_bin = {
|
2024-10-14 17:43:34 -07:00
|
|
|
["tinymist"] = nixCats("bin.tinymist"),
|
2024-10-10 00:48:10 -07:00
|
|
|
["websocat"] = nixCats("bin.websocat"),
|
|
|
|
},
|
|
|
|
})
|
|
|
|
end,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"mini.ai",
|
|
|
|
event = "BufEnter",
|
|
|
|
after = function()
|
|
|
|
require("mini.ai").setup()
|
|
|
|
end,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"mini.surround",
|
|
|
|
event = "BufEnter",
|
|
|
|
after = function()
|
|
|
|
require("mini.surround").setup()
|
|
|
|
end,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"mini.starter",
|
|
|
|
after = function()
|
|
|
|
require("mini.starter").setup()
|
|
|
|
end,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"mini.notify",
|
|
|
|
after = function()
|
|
|
|
require("mini.notify").setup({
|
2024-10-10 13:36:56 -07:00
|
|
|
-- handled by statusline
|
2024-10-10 00:48:10 -07:00
|
|
|
lsp_progress = { enable = false },
|
|
|
|
})
|
|
|
|
end,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"mini.trailspace",
|
|
|
|
event = "BufEnter",
|
|
|
|
after = function()
|
|
|
|
require("mini.trailspace").setup()
|
|
|
|
end,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"cellular-automaton.nvim",
|
|
|
|
cmd = "CellularAutomaton",
|
2024-10-10 13:23:08 -07:00
|
|
|
keys = {
|
|
|
|
{
|
|
|
|
"<leader>mr",
|
|
|
|
function()
|
|
|
|
vim.cmd.CellularAutomaton("make_it_rain")
|
|
|
|
end,
|
|
|
|
desc = "A surprise!",
|
|
|
|
mode = "n",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"<leader>bruh",
|
|
|
|
function()
|
|
|
|
vim.cmd.CellularAutomaton("game_of_life")
|
|
|
|
end,
|
|
|
|
desc = "A surprise!",
|
|
|
|
mode = "n",
|
|
|
|
},
|
|
|
|
},
|
2024-10-10 00:48:10 -07:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"indent-blankline.nvim",
|
|
|
|
after = function()
|
|
|
|
require("ibl").setup({
|
2024-10-10 00:21:39 -07:00
|
|
|
indent = {
|
|
|
|
char = "│",
|
|
|
|
tab_char = "│",
|
|
|
|
},
|
|
|
|
scope = { show_start = false, show_end = false },
|
|
|
|
exclude = {
|
|
|
|
filetypes = {
|
|
|
|
"help",
|
|
|
|
"ministarter",
|
|
|
|
"Trouble",
|
|
|
|
"trouble",
|
|
|
|
"toggleterm",
|
|
|
|
},
|
|
|
|
},
|
2024-10-10 00:48:10 -07:00
|
|
|
})
|
|
|
|
end,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"mini.bufremove",
|
2024-10-10 13:23:08 -07:00
|
|
|
keys = {
|
|
|
|
{
|
|
|
|
"<leader>bd",
|
|
|
|
function()
|
|
|
|
MiniBufremove.delete()
|
|
|
|
end,
|
|
|
|
mode = { "n", "v" },
|
|
|
|
desc = "Close buffer",
|
|
|
|
},
|
|
|
|
},
|
2024-10-10 00:48:10 -07:00
|
|
|
after = function()
|
|
|
|
require("mini.bufremove").setup()
|
|
|
|
end,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"mini.hipatterns",
|
|
|
|
event = "BufEnter",
|
|
|
|
after = function()
|
|
|
|
require("mini.hipatterns").setup()
|
|
|
|
end,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"neogit",
|
|
|
|
cmd = "Neogit",
|
2024-10-10 13:23:08 -07:00
|
|
|
keys = {
|
|
|
|
{
|
|
|
|
"<leader>gg",
|
|
|
|
function()
|
|
|
|
vim.cmd.Neogit()
|
|
|
|
end,
|
|
|
|
desc = "Open neogit",
|
|
|
|
mode = "n",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"<leader>gc",
|
|
|
|
function()
|
|
|
|
vim.cmd.Neogit("kind=floating commit")
|
|
|
|
end,
|
|
|
|
desc = "Open neogit commit menu",
|
|
|
|
mode = "n",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
before = function()
|
|
|
|
local lz = require("lz.n")
|
|
|
|
lz.trigger_load("diffview.nvim")
|
|
|
|
lz.trigger_load("telescope.nvim")
|
|
|
|
end,
|
2024-10-10 00:48:10 -07:00
|
|
|
after = function()
|
|
|
|
require("neogit").setup({
|
|
|
|
graph_style = "unicode",
|
|
|
|
integrations = {
|
|
|
|
telescope = true,
|
|
|
|
diffview = true,
|
|
|
|
},
|
|
|
|
})
|
|
|
|
end,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"diffiew.nvim",
|
|
|
|
cmd = { "DiffviewOpen", "DiffviewClose", "DiffviewToggleFiles", "DiffviewFocusFiles", "DiffviewRefresh" },
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"barbecue.nvim",
|
|
|
|
event = "BufEnter",
|
2024-10-10 13:42:50 -07:00
|
|
|
after = function()
|
|
|
|
require("barbecue").setup()
|
2024-10-10 00:48:10 -07:00
|
|
|
end,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"undotree",
|
|
|
|
cmd = "UndotreeToggle",
|
2024-10-10 13:23:08 -07:00
|
|
|
keys = {
|
|
|
|
{
|
|
|
|
"<leader>u",
|
|
|
|
function()
|
|
|
|
vim.cmd.UndotreeToggle()
|
|
|
|
end,
|
|
|
|
desc = "Toggle undotree",
|
|
|
|
mode = "n",
|
|
|
|
},
|
|
|
|
},
|
2024-10-10 00:48:10 -07:00
|
|
|
},
|
2024-10-10 13:52:42 -07:00
|
|
|
{
|
|
|
|
"neocord",
|
|
|
|
event = "BufEnter",
|
|
|
|
after = function()
|
|
|
|
require("neocord").setup({
|
|
|
|
editing_text = "Hacking %s",
|
|
|
|
logo_tooltip = "The One True Text Editor",
|
|
|
|
terminal_text = "Bypassing the mainframe",
|
|
|
|
workspace_text = "The One True Text Editor",
|
|
|
|
})
|
|
|
|
end,
|
|
|
|
},
|
2024-10-10 14:39:16 -07:00
|
|
|
{
|
|
|
|
"crates.nvim",
|
2024-10-11 12:27:35 -07:00
|
|
|
event = "BufRead Cargo.toml",
|
2024-10-10 14:39:16 -07:00
|
|
|
after = function()
|
2024-10-11 23:50:55 -07:00
|
|
|
require("crates").setup({})
|
2024-10-10 14:39:16 -07:00
|
|
|
end,
|
|
|
|
},
|
|
|
|
{ "rustaceanvim" },
|
|
|
|
{ "haskell-tools.nvim" },
|
2024-10-17 01:10:32 -07:00
|
|
|
{
|
|
|
|
"typescript-tools.nvim",
|
|
|
|
filetypes = { "typescriptreact", "typescript", "javascript", "svelte", "javascriptreact" },
|
|
|
|
after = function()
|
2024-10-17 01:12:45 -07:00
|
|
|
require("lz.n").trigger_load("nvim-lspconfig")
|
2024-10-17 01:14:32 -07:00
|
|
|
require("typescript-tools").setup({})
|
2024-10-17 01:10:32 -07:00
|
|
|
end,
|
|
|
|
},
|
2024-10-11 12:51:01 -07:00
|
|
|
{
|
|
|
|
"lsp_lines.nvim",
|
|
|
|
event = "LspAttach",
|
|
|
|
after = function()
|
|
|
|
require("lsp_lines").setup()
|
|
|
|
vim.diagnostic.config({
|
|
|
|
virtual_text = false,
|
|
|
|
virtual_lines = { only_current_line = true },
|
|
|
|
})
|
|
|
|
end,
|
|
|
|
},
|
2024-10-10 00:48:10 -07:00
|
|
|
}
|