From 3c4561d9e7647cd891a98ca241f686f498624643 Mon Sep 17 00:00:00 2001 From: PowerUser64 Date: Sun, 12 Jun 2022 05:12:39 -0700 Subject: [PATCH] nvim: remove satellite (it caused problems) --- .config/nvim/lua/blake/plugins.lua | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/.config/nvim/lua/blake/plugins.lua b/.config/nvim/lua/blake/plugins.lua index 9922730..2670462 100644 --- a/.config/nvim/lua/blake/plugins.lua +++ b/.config/nvim/lua/blake/plugins.lua @@ -356,16 +356,16 @@ return require('packer').startup({function() require('cleanfold').setup() end, } - use { -- lewis6991: sattelite: small scroll bar - 'lewis6991/satellite.nvim', - config = function() - require('satellite').setup() - vim.cmd [[ - nnoremap nohlsearch\|diffupdate\|SatelliteRefresh - inoremap nohlsearch\|diffupdate\|SatelliteRefresh - ]] - end, - } + -- use { -- lewis6991: sattelite: small scroll bar + -- 'lewis6991/satellite.nvim', + -- config = function() + -- require('satellite').setup() + -- vim.cmd [[ + -- nnoremap nohlsearch\|diffupdate\|SatelliteRefresh + -- inoremap nohlsearch\|diffupdate\|SatelliteRefresh + -- ]] + -- end, + -- } use { -- tpope: surround 'tpope/vim-surround' }