From db2fb54305c1bde534c9ade78ab706e3a12d01ad Mon Sep 17 00:00:00 2001 From: Tristan Russell Date: Sun, 24 Aug 2025 20:44:46 -0400 Subject: [PATCH] feat: Removed snippets/distant from install via Packer --- lua/truss/packer.lua | 20 -------------------- 1 file changed, 20 deletions(-) diff --git a/lua/truss/packer.lua b/lua/truss/packer.lua index 8b62af5..8cb8590 100644 --- a/lua/truss/packer.lua +++ b/lua/truss/packer.lua @@ -27,17 +27,6 @@ return require('packer').startup(function(use) use({'hrsh7th/cmp-path'}) use({'hrsh7th/cmp-cmdline'}) - -- Snippets - use({ - "L3MON4D3/LuaSnip", - -- follow latest release. - tag = "v2.*", -- Replace by the latest released major (first number of latest release) - -- install jsregexp (optional!:). - run = "make install_jsregexp" - }) - use({"rafamadriz/friendly-snippets"}) - use({"saadparwaiz1/cmp_luasnip"}) - -- Harpoon use 'ThePrimeagen/harpoon' @@ -49,13 +38,4 @@ return require('packer').startup(function(use) -- Color Scheme use 'folke/tokyonight.nvim' - - -- Distant (Remote Editing) - use { - 'chipsenkbeil/distant.nvim', - branch = 'v0.3', - config = function() - require('distant'):setup() - end - } end)