From 2a3ee1c8f696e6f3a9972a05f8b5f8681c244a2e Mon Sep 17 00:00:00 2001 From: philw Date: Sat, 17 Feb 2024 12:42:20 +0100 Subject: Migrate to lazy and coq --- lua/config/packer.lua | 57 --------------------------------------------------- 1 file changed, 57 deletions(-) delete mode 100644 lua/config/packer.lua (limited to 'lua/config/packer.lua') diff --git a/lua/config/packer.lua b/lua/config/packer.lua deleted file mode 100644 index 07a600a..0000000 --- a/lua/config/packer.lua +++ /dev/null @@ -1,57 +0,0 @@ -vim.cmd([[packadd packer.nvim]]) -return require("packer").startup(function(use) - use("wbthomason/packer.nvim") - use("nvim-treesitter/nvim-treesitter") - use("neovim/nvim-lspconfig") - use("lukas-reineke/indent-blankline.nvim") - use("lervag/vimtex") - use("folke/tokyonight.nvim") - use("airblade/vim-gitgutter") - use("jose-elias-alvarez/null-ls.nvim") - use("windwp/nvim-ts-autotag") - use({ - "nvim-telescope/telescope.nvim", - tag = "0.1.4", - requires = { { "nvim-lua/plenary.nvim" } }, - }) - use({ - "VonHeikemen/lsp-zero.nvim", - requires = { - { "neovim/nvim-lspconfig" }, - { "williamboman/mason.nvim" }, - { "williamboman/mason-lspconfig.nvim" }, - { "hrsh7th/nvim-cmp" }, - { "hrsh7th/cmp-buffer" }, - { "hrsh7th/cmp-path" }, - { "saadparwaiz1/cmp_luasnip" }, - { "hrsh7th/cmp-nvim-lsp" }, - { "hrsh7th/cmp-nvim-lua" }, - { "rafamadriz/friendly-snippets" }, - }, - }) - use({ - "L3MON4D3/LuaSnip", - tag = "v2.*", - run = "make install_jsregexp", - }) - use({ - "numToStr/Comment.nvim", - config = function() - require("Comment").setup() - end, - }) - use({ - "iamcco/markdown-preview.nvim", - run = "cd app && npm install", - setup = function() - vim.g.mkdp_filetypes = { "markdown" } - end, - ft = { "markdown" }, - }) - use({ - "windwp/nvim-autopairs", - config = function() - require("nvim-autopairs").setup({}) - end, - }) -end) -- cgit v1.2.3