Add neovim plugins

This commit is contained in:
Mateusz Słodkowicz 2026-03-25 21:03:57 +01:00
parent 8eb8d54d93
commit ec3cac1c98
Signed by: materus
SSH Key Fingerprint: SHA256:rzVduzTiiszuYfLPYD0SDZV+g8lxhpcRgpbOZA1X0Uo

View File

@ -27,14 +27,35 @@ if vim.fn.executable("git") == 1 then
local opts = {} local opts = {}
local plugins = { local plugins = {
{ {
"Mofiqul/dracula.nvim", 'stevearc/oil.nvim',
---@module 'oil'
---@type oil.setupopts
opts = {},
-- optional dependencies
dependencies = { { "nvim-mini/mini.icons", opts = {} } },
-- dependencies = { "nvim-tree/nvim-web-devicons" }, -- use if you prefer nvim-web-devicons
-- lazy loading is not recommended because it is very tricky to make it work correctly in all situations.
lazy = false,
},
{
"nvim-neo-tree/neo-tree.nvim",
branch = "v3.x",
dependencies = {
"nvim-lua/plenary.nvim",
"muniftanjim/nui.nvim",
"nvim-tree/nvim-web-devicons",
},
lazy = false,
},
{
"mofiqul/dracula.nvim",
lazy = false, lazy = false,
priority = 1000, priority = 1000,
opts = {} opts = {}
}, },
{ {
"romgrk/barbar.nvim", "romgrk/barbar.nvim",
init = function() vim.g.barbar_auto_setup = false end, init = function() vim.g.barbar_auto_setup = true end,
dependencies = { "nvim-tree/nvim-web-devicons", "lewis6991/gitsigns.nvim" } dependencies = { "nvim-tree/nvim-web-devicons", "lewis6991/gitsigns.nvim" }
}, },
{ {