feat(plugins): update plugins list

This commit is contained in:
doryan 2025-02-12 22:43:35 +04:00
parent dee584556c
commit 7464d8afcd
2 changed files with 199 additions and 198 deletions

View File

@ -1,152 +1,149 @@
return { return {
{ {
'simrat39/inlay-hints.nvim', 'simrat39/inlay-hints.nvim',
}, },
{ {
"LunarVim/breadcrumbs.nvim", "LunarVim/breadcrumbs.nvim",
}, },
{ {
"akinsho/bufferline.nvim", "akinsho/bufferline.nvim",
}, },
{ {
"lewis6991/gitsigns.nvim" "lewis6991/gitsigns.nvim"
}, },
{ {
"lewis6991/hover.nvim", "lewis6991/hover.nvim",
}, },
{ {
"nvim-lualine/lualine.nvim", "nvim-lualine/lualine.nvim",
}, },
{ {
"akinsho/toggleterm.nvim", "windwp/nvim-autopairs",
}, },
{ {
"windwp/nvim-autopairs", 'kevinhwang91/promise-async',
}, },
{ {
'kevinhwang91/promise-async', 'theHamsta/nvim-dap-virtual-text',
}, },
{ {
'theHamsta/nvim-dap-virtual-text', "hrsh7th/cmp-nvim-lsp",
}, },
{ {
"hrsh7th/cmp-nvim-lsp", "SmiteshP/nvim-navic",
}, },
{ {
"SmiteshP/nvim-navic", "kyazdani42/nvim-web-devicons"
}, },
{ {
"kyazdani42/nvim-web-devicons" 'NvChad/nvim-colorizer.lua',
}, },
{ {
'NvChad/nvim-colorizer.lua', 'numToStr/Comment.nvim'
}, },
{ {
'numToStr/Comment.nvim' "nvim-treesitter/nvim-treesitter",
}, },
{ {
"nvim-treesitter/nvim-treesitter", "catppuccin/nvim"
}, },
{ {
"vague2k/huez.nvim", "vague2k/huez.nvim",
}, },
{ {
"nvim-telescope/telescope.nvim", "nvim-telescope/telescope.nvim",
}, },
{ {
"williamboman/mason-lspconfig.nvim", "williamboman/mason-lspconfig.nvim",
}, },
{ {
"neovim/nvim-lspconfig", "neovim/nvim-lspconfig",
}, },
{ {
"mfussenegger/nvim-dap", "mfussenegger/nvim-dap",
event = "VeryLazy", event = "VeryLazy",
}, },
{ {
"L3MON4D3/LuaSnip", "L3MON4D3/LuaSnip",
lazy = true, lazy = true,
}, },
{ {
'folke/lazydev.nvim', 'folke/lazydev.nvim',
ft = "lua", ft = "lua",
}, },
{ {
'Bekaboo/dropbar.nvim', 'Bekaboo/dropbar.nvim',
dependencies = { dependencies = {
'nvim-telescope/telescope-fzf-native.nvim', 'nvim-telescope/telescope-fzf-native.nvim',
build = 'make' build = 'make'
}, },
config = function() config = function()
local dropbar_api = require('dropbar.api') local dropbar_api = require('dropbar.api')
vim.keymap.set('n', '<Leader>;', dropbar_api.pick, { desc = 'Pick symbols in winbar' }) vim.keymap.set('n', '<Leader>;', dropbar_api.pick, { desc = 'Pick symbols in winbar' })
vim.keymap.set('n', '[;', dropbar_api.goto_context_start, { desc = 'Go to start of current context' }) vim.keymap.set('n', '[;', dropbar_api.goto_context_start, { desc = 'Go to start of current context' })
vim.keymap.set('n', '];', dropbar_api.select_next_context, { desc = 'Select next context' }) vim.keymap.set('n', '];', dropbar_api.select_next_context, { desc = 'Select next context' })
end end
}, },
{ {
"folke/noice.nvim", "folke/noice.nvim",
event = "VeryLazy", event = "VeryLazy",
dependencies = { dependencies = {
"MunifTanjim/nui.nvim", "MunifTanjim/nui.nvim",
"rcarriga/nvim-notify", "rcarriga/nvim-notify",
}, },
}, },
{ {
"nvim-neo-tree/neo-tree.nvim", "nvim-neo-tree/neo-tree.nvim",
branch = "v2.x", branch = "v2.x",
dependencies = { dependencies = {
"nvim-lua/plenary.nvim", "nvim-lua/plenary.nvim",
"nvim-tree/nvim-web-devicons", "nvim-tree/nvim-web-devicons",
"MunifTanjim/nui.nvim", "MunifTanjim/nui.nvim",
}, },
}, },
{ {
"williamboman/mason.nvim", "williamboman/mason.nvim",
opts = { opts = {
ensure_installed = { ensure_installed = {
"eslint-lsp", "eslint-lsp",
"js-debug-adapter", "js-debug-adapter",
"prettier", "prettier",
"tinymist", "tinymist",
"typescript-language-server", "typescript-language-server",
} }
} }
}, },
{ {
"rcarriga/nvim-dap-ui", "rcarriga/nvim-dap-ui",
dependencies = { dependencies = {
"nvim-neotest/nvim-nio", "nvim-neotest/nvim-nio",
"mfussenegger/nvim-dap", "mfussenegger/nvim-dap",
}, },
event = "VeryLazy", event = "VeryLazy",
config = function() config = function()
require("dapui").setup() require("dapui").setup()
end end
}, },
{ {
"hrsh7th/nvim-cmp", "hrsh7th/nvim-cmp",
event = "InsertEnter", event = "InsertEnter",
dependencies = { dependencies = {
{ {
"L3MON4D3/LuaSnip", "L3MON4D3/LuaSnip",
dependencies = "rafamadriz/friendly-snippets", dependencies = "rafamadriz/friendly-snippets",
opts = { history = true, updateevents = "TextChanged,TextChangedI" }, opts = { history = true, updateevents = "TextChanged,TextChangedI" },
config = function(_, opts) config = function(_, opts)
require("luasnip").config.set_config(opts) require("luasnip").config.set_config(opts)
require "config.plugins.luasnip" require "config.plugins.luasnip"
end, end,
}, },
{ {
"saadparwaiz1/cmp_luasnip", "saadparwaiz1/cmp_luasnip",
"hrsh7th/cmp-nvim-lua", "hrsh7th/cmp-nvim-lua",
"hrsh7th/cmp-nvim-lsp", "hrsh7th/cmp-nvim-lsp",
"hrsh7th/cmp-buffer", "hrsh7th/cmp-buffer",
"hrsh7th/cmp-path", "hrsh7th/cmp-path",
}, },
}, },
}, },
{
'kevinhwang91/nvim-ufo',
},
} }

View File

@ -1,50 +1,54 @@
return { return {
{ {
'nvimdev/dashboard-nvim', 'nvimdev/dashboard-nvim',
event = 'VimEnter', event = 'VimEnter',
dependencies = { { 'nvim-tree/nvim-web-devicons' } } dependencies = { { 'nvim-tree/nvim-web-devicons' } }
}, },
{ {
"kaarmu/typst.vim", "kaarmu/typst.vim",
lazy = true, lazy = true,
}, },
{ {
'MunifTanjim/prettier.nvim', 'MunifTanjim/prettier.nvim',
lazy = true, lazy = true,
}, },
{ {
"savq/melange-nvim" "savq/melange-nvim"
}, },
{ {
"mlaursen/vim-react-snippets", 'akinsho/toggleterm.nvim', version = "*", config = true
lazy = true, },
}, {
{ "mlaursen/vim-react-snippets",
"windwp/nvim-ts-autotag", lazy = true,
lazy = true, },
}, {
{ "windwp/nvim-ts-autotag",
"lukas-reineke/indent-blankline.nvim" lazy = true,
}, },
{ {
"mxsdev/nvim-dap-vscode-js", "lukas-reineke/indent-blankline.nvim"
lazy = true, },
}, {
{ "mxsdev/nvim-dap-vscode-js",
"windwp/nvim-autopairs", lazy = true,
lazy = true, },
event = "InsertEnter", {
config = true "windwp/nvim-autopairs",
}, lazy = true,
{ event = "InsertEnter",
"microsoft/vscode-js-debug", config = true
lazy = true, },
build = "npm install --legacy-peer-deps && npx gulp vsDebugServerBundle && mv dist out" {
}, "microsoft/vscode-js-debug",
{ lazy = true,
"mrcjkb/rustaceanvim", build = "npm install --legacy-peer-deps && npx gulp vsDebugServerBundle && mv dist out"
version = '^4', -- Recommended },
lazy = false, -- This plugin is already lazy {
ft = { "rust" }, "mrcjkb/rustaceanvim",
}, version = '^4', -- Recommended
lazy = false, -- This plugin is already lazy
ft = { "rust" },
},
} }