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', })