49 lines
1.1 KiB
Lua
49 lines
1.1 KiB
Lua
return {
|
|
{
|
|
"stevearc/oil.nvim",
|
|
---@module 'oil'
|
|
---@type oil.SetupOpts
|
|
opts = {},
|
|
dependencies = { { "echasnovski/mini.icons", opts = {} } },
|
|
-- dependencies = { "nvim-tree/nvim-web-devicons" }, -- use if prefer nvim-web-devicons
|
|
},
|
|
{
|
|
"kyazdani42/nvim-web-devicons",
|
|
opts = {},
|
|
},
|
|
{
|
|
"romgrk/barbar.nvim",
|
|
dependencies = {
|
|
"lewis6991/gitsigns.nvim", -- OPTIONAL: for git status
|
|
"nvim-tree/nvim-web-devicons", -- OPTIONAL: for file icons
|
|
},
|
|
init = function()
|
|
vim.g.barbar_auto_setup = false
|
|
end,
|
|
opts = {
|
|
-- lazy.nvim will automatically call setup for you. put your options here, anything missing will use the default:
|
|
-- animation = true,
|
|
-- insert_at_start = true,
|
|
-- …etc.
|
|
},
|
|
version = "^1.0.0", -- optional: only update when a new 1.x version is released
|
|
},
|
|
{
|
|
"nvim-lualine/lualine.nvim",
|
|
dependencies = { "nvim-tree/nvim-web-devicons" },
|
|
opts = {},
|
|
},
|
|
{
|
|
"ahmedkhalf/project.nvim",
|
|
opts = {},
|
|
config = function()
|
|
require("telescope").load_extension("projects")
|
|
end,
|
|
},
|
|
{
|
|
"mg979/vim-visual-multi",
|
|
opts = {},
|
|
config = function() end,
|
|
},
|
|
}
|