nvim-config/lua/plugins.lua

27 lines
622 B
Lua
Raw Normal View History

2023-02-05 15:42:52 -08:00
return function(use)
2023-02-09 21:22:26 -08:00
use({ "folke/trouble.nvim" })
2023-02-05 15:42:52 -08:00
use({
2023-02-09 21:22:26 -08:00
"folke/which-key.nvim",
config = function()
require("which-key").setup({})
end,
2023-02-05 15:42:52 -08:00
})
2023-02-09 21:22:26 -08:00
use({ "windwp/nvim-autopairs" })
use({ "nvim-tree/nvim-web-devicons" })
2023-02-05 15:42:52 -08:00
use({
2023-02-09 21:22:26 -08:00
"nvim-tree/nvim-tree.lua",
tag = "nightly",
2023-02-05 15:42:52 -08:00
})
2023-02-09 21:22:26 -08:00
use({ "ckipp01/stylua-nvim" })
use({ "gennaro-tedesco/nvim-jqx" })
use({ "lervag/vimtex" })
2023-02-05 15:42:52 -08:00
use({
2023-02-09 21:22:26 -08:00
"f3fora/nvim-texlabconfig",
run = "go build",
2023-02-05 15:42:52 -08:00
})
2023-02-09 21:22:26 -08:00
use({ "sindrets/diffview.nvim" })
use({ "nvim-treesitter/playground" })
use({ "softinio/scaladex.nvim" })
use({ "TimUntersberger/neogit" })
2023-02-05 15:42:52 -08:00
end