From 28d7b96c1280d190c0defdd5e4cb2defe87866e0 Mon Sep 17 00:00:00 2001 From: tronglt Date: Tue, 13 Jun 2023 06:50:58 +0700 Subject: [PATCH] Update. --- init.lua | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/init.lua b/init.lua index 90180a8c..ea0057a4 100644 --- a/init.lua +++ b/init.lua @@ -157,7 +157,7 @@ require('lazy').setup({ return vim.fn.executable 'make' == 1 end, }, - + -- Telescope installation for Windows only. -- { -- 'nvim-telescope/telescope-fzf-native.nvim', @@ -247,6 +247,9 @@ vim.keymap.set({ 'n', 'v' }, '', '', { silent = true }) vim.keymap.set('n', 'k', "v:count == 0 ? 'gk' : 'k'", { expr = true, silent = true }) vim.keymap.set('n', 'j', "v:count == 0 ? 'gj' : 'j'", { expr = true, silent = true }) +-- Bring escape key back in Terminal mode +vim.keymap.set('t', '', '') + -- [[ Highlight on yank ]] -- See `:help vim.highlight.on_yank()` local highlight_group = vim.api.nvim_create_augroup('YankHighlight', { clear = true })