diff options
Diffstat (limited to 'ar/.config/LazyVim/vscode/plugins.lua')
| -rw-r--r-- | ar/.config/LazyVim/vscode/plugins.lua | 153 |
1 files changed, 153 insertions, 0 deletions
diff --git a/ar/.config/LazyVim/vscode/plugins.lua b/ar/.config/LazyVim/vscode/plugins.lua new file mode 100644 index 0000000..920d80f --- /dev/null +++ b/ar/.config/LazyVim/vscode/plugins.lua @@ -0,0 +1,153 @@ +-- plugins.lua + +return { + + -- Alpha (Dashboard) + { + "goolord/alpha-nvim", + lazy = true, + }, + + -- Auto Pairs + { + "windwp/nvim-autopairs", + }, + + -- Bufferline + { + "akinsho/bufferline.nvim", + dependencies = { + "nvim-tree/nvim-web-devicons", + }, + }, + + -- Colorscheme + { + "folke/tokyonight.nvim", + }, + + -- Comments + { + "numToStr/Comment.nvim", + config = function() + require("Comment").setup() + end, + }, + + -- Easymotion (VScode) + { + "ChristianChiarulli/vscode-easymotion", + }, + + -- Git Integration + { + "lewis6991/gitsigns.nvim", + }, + + -- Hop (Better Navigation) + { + "phaazon/hop.nvim", + lazy = true, + }, + + -- Indentation Highlighting + { + "lukas-reineke/indent-blankline.nvim", + }, + + -- Rainbow Highlighting + { + "HiPhish/nvim-ts-rainbow2", + }, + + -- Lualine + { + "nvim-lualine/lualine.nvim", + dependencies = { + "nvim-tree/nvim-web-devicons", + }, + }, + + -- Language Support + { + "VonHeikemen/lsp-zero.nvim", + lazy = true, + branch = "v1.x", + dependencies = { + -- LSP Support + { "neovim/nvim-lspconfig" }, -- Required + { "williamboman/mason.nvim" }, -- Optional + { "williamboman/mason-lspconfig.nvim" }, -- Optional + + -- Autocompletion + { "hrsh7th/nvim-cmp" }, -- Required + { "hrsh7th/cmp-nvim-lsp" }, -- Required + { "hrsh7th/cmp-buffer" }, -- Optional + { "hrsh7th/cmp-path" }, -- Optional + { "saadparwaiz1/cmp_luasnip" }, -- Optional + { "hrsh7th/cmp-nvim-lua" }, -- Optional + + -- Snippets + { "L3MON4D3/LuaSnip" }, -- Required + { "rafamadriz/friendly-snippets" }, -- Optional + }, + }, + + -- Nvim-tree (File Explorer) + { + "nvim-tree/nvim-tree.lua", + lazy = true, + dependencies = { + "nvim-tree/nvim-web-devicons", + }, + }, + + -- Nvim-Surround (Manipulating Surroundings) + { + "kylechui/nvim-surround", + config = function() + require("nvim-surround").setup { + -- Configuration here, or leave empty to use defaults + } + end, + }, + + -- -- Quick-Scope + -- { + -- "unblevable/quick-scope", + -- }, + + -- Telescope (Fuzzy Finder) + { + "nvim-telescope/telescope.nvim", + lazy = true, + dependencies = { + { "nvim-lua/plenary.nvim" }, + }, + }, + + -- Treesitter + { + "nvim-treesitter/nvim-treesitter", + }, + + -- Toggle Term + { + "akinsho/toggleterm.nvim", + config = true, + }, + + -- Undo-Tree + { + "jiaoshijie/undotree", + dependencies = { + "nvim-lua/plenary.nvim", + }, + }, + + -- Which-key + { + "folke/which-key.nvim", + lazy = true, + }, +} |
