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"; -})();