This repository has been archived on 2026-01-13. You can view files and clone it, but cannot push or open issues or pull requests.
nvim/lua/plugins/init.lua

73 lines
1.6 KiB
Lua

return {
{
"stevearc/conform.nvim",
-- event = "BufWritePre", -- uncomment for format on save
opts = require "configs.conform",
},
{
"neovim/nvim-lspconfig",
config = function()
require "configs.lspconfig"
end,
},
{
"nvim-treesitter/nvim-treesitter",
opts = {
ensure_installed = {
"vim",
"lua",
"vimdoc",
"rust",
"python",
"c",
"regex",
"html",
"css",
"javascript",
"markdown",
"markdown_inline",
"tsx",
},
},
},
{
"mbbill/undotree",
cmd = "UndotreeToggle",
},
-- Misc
{
"alec-gibson/nvim-tetris",
cmd = { "Tetris" },
},
{
"ThePrimeagen/harpoon",
},
{
"Zeioth/compiler.nvim",
cmd = { "CompilerOpen", "CompilerToggleResults", "CompilerRedo" },
dependencies = { "stevearc/overseer.nvim", "nvim-telescope/telescope.nvim" },
opts = {},
},
-- Task runner for compiler.nvim
{
"stevearc/overseer.nvim",
commit = "6271cab7ccc4ca840faa93f54440ffae3a3918bd",
cmd = { "CompilerOpen", "CompilerToggleResults", "CompilerRedo" },
opts = {
task_list = {
direction = "bottom",
min_height = 25,
max_height = 25,
default_detail = 1,
},
},
},
}