2024-09-12 21:43:42 +02:00
|
|
|
return {
|
|
|
|
{
|
2024-09-14 00:55:51 +02:00
|
|
|
"stevearc/oil.nvim",
|
|
|
|
---@module 'oil'
|
|
|
|
---@type oil.SetupOpts
|
2024-09-12 21:43:42 +02:00
|
|
|
opts = {},
|
2024-09-16 12:18:48 +02:00
|
|
|
--dependencies = { { "echasnovski/mini.icons", opts = {} } },
|
|
|
|
dependencies = { "nvim-tree/nvim-web-devicons" }, -- use if prefer nvim-web-devicons
|
2024-09-19 22:22:11 +02:00
|
|
|
config = function()
|
|
|
|
require("oil").setup({
|
|
|
|
view_options = {
|
|
|
|
show_hidden = true,
|
|
|
|
},
|
|
|
|
})
|
|
|
|
end,
|
2024-09-12 21:43:42 +02:00
|
|
|
},
|
2024-09-20 13:17:50 +02:00
|
|
|
{
|
|
|
|
"mrjones2014/smart-splits.nvim",
|
2024-12-13 12:25:43 +01:00
|
|
|
priority = 1000,
|
2024-09-20 13:17:50 +02:00
|
|
|
build = "./kitty/install-kittens.bash",
|
|
|
|
},
|
2024-09-16 13:25:58 +02:00
|
|
|
{
|
|
|
|
"nvim-tree/nvim-tree.lua",
|
|
|
|
version = "*",
|
|
|
|
lazy = false,
|
|
|
|
dependencies = {
|
|
|
|
"nvim-tree/nvim-web-devicons",
|
|
|
|
},
|
|
|
|
config = function()
|
2024-09-20 13:17:50 +02:00
|
|
|
require("nvim-tree").setup({
|
|
|
|
diagnostics = {
|
|
|
|
enable = true,
|
|
|
|
show_on_dirs = true,
|
|
|
|
},
|
|
|
|
})
|
2024-09-16 13:25:58 +02:00
|
|
|
end,
|
|
|
|
},
|
2024-09-12 21:43:42 +02:00
|
|
|
{
|
|
|
|
"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,
|
|
|
|
},
|
2024-09-14 00:55:51 +02:00
|
|
|
{
|
|
|
|
"mg979/vim-visual-multi",
|
|
|
|
opts = {},
|
|
|
|
config = function() end,
|
|
|
|
},
|
2024-09-12 21:43:42 +02:00
|
|
|
}
|