1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133
| 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", lazypath, }) end vim.opt.rtp:prepend(lazypath) require("lazy").setup({ git = { log = { "-8" }, timeout = 120, url_format = "https://github.com/%s.git", filter = true, }, "neovim/nvim-lspconfig", "williamboman/mason.nvim", "williamboman/mason-lspconfig.nvim", { "vim-latex/vim-latex", lazy = false, }, { "agate/vim-align" }, { "folke/tokyonight.nvim", "catppuccin/nvim", }, { "nvim-treesitter/nvim-treesitter", build =":TSUpdate" }, { "nvim-lualine/lualine.nvim", dependencies = { "nvim-tree/nvim-web-devicons", lazy = true }, }, 'hrsh7th/cmp-nvim-lsp', 'hrsh7th/cmp-buffer' , 'hrsh7th/cmp-path' , 'hrsh7th/cmp-cmdline' , 'hrsh7th/nvim-cmp', 'hrsh7th/cmp-vsnip' , 'hrsh7th/vim-vsnip' , 'rafamadriz/friendly-snippets' , { "onsails/lspkind.nvim" }, { "aperezdc/vim-template" }, { "SirVer/ultisnips" }, { "honza/vim-snippets" }, {"tpope/vim-speeddating"}, {"tpope/vim-repeat"}, { "terrortylor/nvim-comment" }, { "nvim-tree/nvim-web-devicons" }, { "nvim-tree/nvim-tree.lua" }, { "shellRaining/hlchunk.nvim", event = { "BufReadPre", "BufNewFile" } }, { "hiphish/rainbow-delimiters.nvim" }, { "liuchengxu/vista.vim" }, { "nvim-telescope/telescope.nvim", tag = "0.1.4", dependencies = { "nvim-lua/plenary.nvim" } }, { "folke/todo-comments.nvim", dependencies = { "nvim-lua/plenary.nvim" }, opts = { } }, { "kylechui/nvim-surround", version = "*", event = "VeryLazy", config = function() require("nvim-surround").setup({ }) end }, { "lewis6991/gitsigns.nvim", }, { "NvChad/nvim-colorizer.lua", }, { "micangl/cmp-vimtex" }, { "SirVer/ultisnips" }, { "h-hg/fcitx.nvim" }, })
|