From a84ce8853e1ddbe2158178afd882718793cd8674 Mon Sep 17 00:00:00 2001 From: Michael Wesolek Date: Tue, 3 Dec 2024 11:17:03 +0100 Subject: [PATCH] souround fixes --- init.lua | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/init.lua b/init.lua index 77abc768..8c719f61 100644 --- a/init.lua +++ b/init.lua @@ -136,7 +136,7 @@ vim.opt.updatetime = 125 -- Decrease mapped sequence wait time -- Displays which-key popup sooner -vim.opt.timeoutlen = 200 +vim.opt.timeoutlen = 500 -- Configure how new splits should be opened vim.opt.splitright = true @@ -1082,5 +1082,6 @@ require('lspconfig').pylsp.setup { -- } vim.keymap.set('t', '', '', {}) vim.keymap.set('n', 'xt', ':Telescope colorscheme', {}) +vim.keymap.set({ 'n', 'x' }, 's', '') -- The line beneath this is called `modeline`. See `:help modeline` -- vim: ts=2 sts=2 sw=2 et