dotfiles/.config/nvim/lua/plugins.lua

46 lines
1.0 KiB
Lua

local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"
if not vim.loop.fs_stat(lazypath) then
vim.fn.system({
"git",
"clone",
"--filter=blob:none",
"https://github.com/folke/lazy.nvim.git",
"--branch=stable", -- latest stable release
lazypath,
})
end
vim.opt.rtp:prepend(lazypath)
require("lazy").setup({
-- fuzzy finding
{
'nvim-telescope/telescope.nvim',
dependencies = { 'nvim-lua/plenary.nvim' }
},
{ 'nvim-telescope/telescope-fzf-native.nvim', build = 'make' },
{
'overcache/NeoSolarized',
config = function()
vim.cmd('colorscheme NeoSolarized')
end
},
{'nvim-treesitter/nvim-treesitter', build = ':TSUpdate'},
'tpope/vim-fugitive',
{'lukas-reineke/indent-blankline.nvim', main = "ibl",
opts = {
indent = {
char = {""},
},
},
},
'lewis6991/gitsigns.nvim',
'github/copilot.vim',
'VonHeikemen/lsp-zero.nvim',
'neovim/nvim-lspconfig',
'hrsh7th/cmp-nvim-lsp',
'hrsh7th/nvim-cmp',
})