my neovim configuration
1local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim" 2if not vim.loop.fs_stat(lazypath) then 3 vim.fn.system({ 4 "git", 5 "clone", 6 "--filter=blob:none", 7 "https://github.com/folke/lazy.nvim.git", 8 "--branch=stable", -- latest stable release 9 lazypath, 10 }) 11end 12vim.opt.rtp:prepend(lazypath) 13 14require("lazy").setup({ 15 "nvim-lua/plenary.nvim", 16 17 -- color scheme 18 {"catppuccin/nvim", name="catppuccin"}, 19 20 -- pretty colors for viewing code 21 { 22 "nvim-treesitter/nvim-treesitter", 23 build=":TSUpdate", 24 config=function() require("ptero.configs.treesitter") end 25 }, 26 27 -- fuzzy find all the things 28 { 29 "nvim-telescope/telescope.nvim", 30 config=function() require("ptero.configs.telescope") end 31 }, 32 33 -- git signs in the side 34 { 35 "lewis6991/gitsigns.nvim", 36 config=function() require("ptero.configs.gitsigns") end 37 }, 38 39 "folke/which-key.nvim" 40})