From 96e4862939401b7df69f41db1e6dee9fa57ac14f Mon Sep 17 00:00:00 2001 From: Rudis Muiznieks Date: Fri, 27 Jan 2023 09:19:49 -0600 Subject: [PATCH] removed amazon smile redirect script, since they're shutting it down --- nvim/lua/plugins-conf.lua | 2 +- userscripts/redirect-amazon.js | 16 ---------------- 2 files changed, 1 insertion(+), 17 deletions(-) delete mode 100644 userscripts/redirect-amazon.js diff --git a/nvim/lua/plugins-conf.lua b/nvim/lua/plugins-conf.lua index afe08ca..c13a57b 100644 --- a/nvim/lua/plugins-conf.lua +++ b/nvim/lua/plugins-conf.lua @@ -48,8 +48,8 @@ cmp.setup { preselect = cmp.PreselectMode.None, confirmation = { get_commit_characters = function(_) return {} end }, sources = { - { name = 'luasnip' }, { name = 'nvim_lsp' }, + { name = 'luasnip' }, { name = 'buffer' }, { name = 'path' }, }, diff --git a/userscripts/redirect-amazon.js b/userscripts/redirect-amazon.js deleted file mode 100644 index ae0d41a..0000000 --- a/userscripts/redirect-amazon.js +++ /dev/null @@ -1,16 +0,0 @@ -// ==UserScript== -// @name Redirect-Amazon -// @namespace code.sitosis.com -// @version 1.0 -// @description Rediret Amazon -// @author rudism -// @match https://www.amazon.com/* -// @match https://amazon.com/* -// @grant none -// @run-at document-start -// ==/UserScript== - -(function () { - 'use strict'; - top.location.hostname = "smile.amazon.com"; -})();