59 lines
1.6 KiB
Lua
59 lines
1.6 KiB
Lua
return {
|
|
{
|
|
"nvim-neo-tree/neo-tree.nvim",
|
|
branch = "v3.x",
|
|
dependencies = {
|
|
"nvim-lua/plenary.nvim",
|
|
"nvim-tree/nvim-web-devicons", -- not strictly required, but recommended
|
|
"MunifTanjim/nui.nvim",
|
|
-- {"3rd/image.nvim", opts = {}}, -- Optional image support in preview window: See `# Preview Mode` for more information
|
|
|
|
}
|
|
},
|
|
{
|
|
"catppuccin/nvim",
|
|
name = "catppuccin",
|
|
priority = 1000
|
|
|
|
},
|
|
"mfussenegger/nvim-lint",
|
|
{ 'echasnovski/mini.completion', version = false },
|
|
{'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
|
|
},
|
|
{
|
|
"pmizio/typescript-tools.nvim",
|
|
dependencies = { "nvim-lua/plenary.nvim", "neovim/nvim-lspconfig" },
|
|
opts = {},
|
|
},
|
|
{
|
|
"neoclide/coc.nvim",
|
|
branch = "master",
|
|
build = "bun install",
|
|
},
|
|
{
|
|
"rachartier/tiny-devicons-auto-colors.nvim",
|
|
dependencies = {
|
|
"nvim-tree/nvim-web-devicons"
|
|
},
|
|
event = "VeryLazy",
|
|
config = function()
|
|
require('tiny-devicons-auto-colors').setup()
|
|
end
|
|
},
|
|
"m4xshen/autoclose.nvim",
|
|
|
|
"stevearc/oil.nvim"
|
|
}
|