23 lines
777 B
Lua
23 lines
777 B
Lua
-- Initialize plugin manager
|
|
vim.opt.rtp:prepend("~/.local/share/nvim/lazy/lazy.nvim")
|
|
require("lazy").setup({
|
|
-- Core plugins
|
|
{ "nvim-treesitter/nvim-treesitter", run = ":TSUpdate" },
|
|
{ "nvim-lualine/lualine.nvim" },
|
|
{ "nvim-tree/nvim-tree.lua" },
|
|
{ "nvim-telescope/telescope.nvim" },
|
|
{ "lewis6991/gitsigns.nvim" },
|
|
{ "hrsh7th/nvim-cmp" },
|
|
{ "neovim/nvim-lspconfig" },
|
|
-- Initialize plugin manager
|
|
vim.opt.rtp:prepend("~/.local/share/nvim/lazy/lazy.nvim")
|
|
require("lazy").setup({
|
|
-- Core plugins
|
|
{ "nvim-treesitter/nvim-treesitter", run = ":TSUpdate" },
|
|
{ "nvim-lualine/lualine.nvim" },
|
|
{ "nvim-tree/nvim-tree.lua" },
|
|
{ "nvim-telescope/telescope.nvim" },
|
|
{ "lewis6991/gitsigns.nvim" },
|
|
{ "hrsh7th/nvim-cmp" },
|
|
{ "neovim/nvim-lspconfig" },
|
|
})
|