237 lines
5.2 KiB
Lua
237 lines
5.2 KiB
Lua
local plugins = {
|
|
|
|
"nvim-lua/plenary.nvim",
|
|
---------------------
|
|
-- Theming Section --
|
|
---------------------
|
|
|
|
"rktjmp/fwatch.nvim", -- d to check dark/light theme
|
|
{ "catppuccin/nvim", name = "catppuccin" },
|
|
|
|
"nvim-lualine/lualine.nvim",
|
|
|
|
--------------------
|
|
-- Layout Plugins --
|
|
--------------------
|
|
{ "mbbill/undotree", lazy = false },
|
|
{
|
|
"petertriho/nvim-scrollbar",
|
|
config = function()
|
|
require("configs.scrollbar")
|
|
end,
|
|
},
|
|
{
|
|
"stevearc/dressing.nvim",
|
|
config = function()
|
|
require("dressing")
|
|
end,
|
|
},
|
|
{
|
|
"lewis6991/gitsigns.nvim",
|
|
config = function()
|
|
require("gitsigns").setup()
|
|
end,
|
|
},
|
|
"akinsho/nvim-toggleterm.lua",
|
|
{
|
|
"akinsho/git-conflict.nvim",
|
|
config = function()
|
|
-- require("git-conflict").setup()
|
|
end,
|
|
},
|
|
{
|
|
"rcarriga/nvim-notify",
|
|
config = function()
|
|
require("configs.notify")
|
|
end,
|
|
event = "VimEnter",
|
|
},
|
|
{
|
|
"kyazdani42/nvim-tree.lua",
|
|
cmd = "NvimTreeToggle",
|
|
dependencies = { "kyazdani42/nvim-web-devicons" },
|
|
config = function()
|
|
require("configs.tree")
|
|
end,
|
|
},
|
|
"nvim-lua/popup.nvim",
|
|
"goolord/alpha-nvim", -- startup screen
|
|
{
|
|
"numToStr/Comment.nvim",
|
|
event = "BufReadPre",
|
|
config = function()
|
|
require("Comment").setup()
|
|
end,
|
|
},
|
|
"glepnir/lspsaga.nvim", -- better windows for lsp replace, goto definition etc...
|
|
---------------------
|
|
-- Code Navigation --
|
|
---------------------
|
|
"junegunn/fzf",
|
|
{
|
|
"ggandor/leap.nvim",
|
|
config = function()
|
|
local leap = require("leap")
|
|
leap.add_default_mappings()
|
|
leap.setup({})
|
|
end,
|
|
},
|
|
{
|
|
"nvim-telescope/telescope.nvim",
|
|
config = function()
|
|
require("configs.telescope")
|
|
end,
|
|
},
|
|
-- "ThePrimeagen/harpoon",
|
|
---------------
|
|
-- Lsp Setup --
|
|
---------------
|
|
"arkav/lualine-lsp-progress",
|
|
"neovim/nvim-lspconfig",
|
|
"williamboman/mason.nvim",
|
|
"williamboman/mason-lspconfig.nvim",
|
|
"jose-elias-alvarez/null-ls.nvim",
|
|
-- "folke/lsp-colors.nvim",
|
|
{
|
|
"folke/trouble.nvim",
|
|
event = "BufRead",
|
|
requires = "kyazdani42/nvim-web-devicons",
|
|
config = function()
|
|
require("trouble").setup({})
|
|
end,
|
|
},
|
|
"onsails/lspkind.nvim",
|
|
{
|
|
url = "https://git.sr.ht/~whynothugo/lsp_lines.nvim",
|
|
event = "BufReadPre",
|
|
config = function()
|
|
require("lsp_lines").setup()
|
|
end,
|
|
},
|
|
-------------------
|
|
-- Autocomplete --
|
|
-------------------
|
|
"tpope/vim-surround",
|
|
{
|
|
"hrsh7th/nvim-cmp",
|
|
dependencies = {
|
|
"rafamadriz/friendly-snippets",
|
|
"saadparwaiz1/cmp_luasnip",
|
|
"L3MON4D3/LuaSnip",
|
|
"windwp/nvim-autopairs",
|
|
|
|
"zbirenbaum/copilot.lua",
|
|
"zbirenbaum/copilot-cmp",
|
|
"hrsh7th/cmp-nvim-lsp",
|
|
"hrsh7th/cmp-cmdline",
|
|
"hrsh7th/cmp-path",
|
|
"hrsh7th/cmp-nvim-lua",
|
|
"hrsh7th/cmp-calc",
|
|
"hrsh7th/cmp-emoji",
|
|
},
|
|
event = "InsertEnter",
|
|
config = function()
|
|
vim.schedule(function()
|
|
require("configs.autocomplete")
|
|
require("configs.snippets")
|
|
end)
|
|
end,
|
|
},
|
|
{
|
|
"nat-418/boole.nvim",
|
|
event = "BufReadPre",
|
|
config = function()
|
|
require("boole").setup()
|
|
end,
|
|
},
|
|
{
|
|
"gaoDean/autolist.nvim",
|
|
event = "BufReadPre",
|
|
config = function()
|
|
require("autolist").setup({})
|
|
end,
|
|
},
|
|
-------------------------
|
|
-- Syntax Highlighting --
|
|
-------------------------
|
|
{
|
|
"nvim-treesitter/nvim-treesitter",
|
|
event = "BufReadPost",
|
|
requires = {
|
|
"nvim-treesitter/nvim-treesitter-textobjects",
|
|
},
|
|
config = function()
|
|
require("configs.treesitter")
|
|
end,
|
|
run = ":TSUpdate",
|
|
},
|
|
--------------------
|
|
-- IDE Type Stuff --
|
|
--------------------
|
|
{
|
|
"jackMort/ChatGPT.nvim",
|
|
command = "ChatGPT",
|
|
config = function()
|
|
require("chatgpt").setup({
|
|
-- optional configuration
|
|
})
|
|
end,
|
|
dependencies = {
|
|
"MunifTanjim/nui.nvim",
|
|
}
|
|
},
|
|
{
|
|
"ThePrimeagen/git-worktree.nvim",
|
|
config = function()
|
|
require("git-worktree").setup()
|
|
end,
|
|
},
|
|
{
|
|
"olimorris/persisted.nvim",
|
|
lazy = false,
|
|
config = function()
|
|
require("persisted").setup()
|
|
require("telescope").load_extension("persisted") -- To load the telescope extension
|
|
end,
|
|
},
|
|
-- Dap Debugger -- Have not yet been able to set this up
|
|
"mfussenegger/nvim-dap",
|
|
"rcarriga/nvim-dap-ui",
|
|
{ "mxsdev/nvim-dap-vscode-js", requires = { "mfussenegger/nvim-dap" } },
|
|
"editorconfig/editorconfig-vim",
|
|
{
|
|
"michaelb/sniprun",
|
|
event = "BufReadPost",
|
|
config = function()
|
|
require("configs.sniprun")
|
|
end,
|
|
run = "bash ./install.sh",
|
|
},
|
|
{
|
|
"uga-rosa/translate.nvim",
|
|
event = "InsertEnter",
|
|
config = function()
|
|
require("translate").setup({ default = { output = "replace" } })
|
|
end,
|
|
},
|
|
{
|
|
"nvim-neotest/neotest",
|
|
cmd = "NeoTest",
|
|
config = function()
|
|
require("configs.neotest")
|
|
end,
|
|
requires = {
|
|
"haydenmeade/neotest-jest",
|
|
"KaiSpencer/neotest-vitest",
|
|
"antoinemadec/FixCursorHold.nvim",
|
|
},
|
|
},
|
|
|
|
"tpope/vim-dadbod",
|
|
"kristijanhusak/vim-dadbod-ui",
|
|
}
|
|
|
|
local opts = { defaults = { lazy = true }, install = { colorscheme = { "catppuccin" } } }
|
|
|
|
require("lazy").setup(plugins, opts)
|