From 0be530d500bd00f4de56a3148a23b291844e0a83 Mon Sep 17 00:00:00 2001 From: Von Random Date: Sun, 8 Jan 2023 00:03:44 +0200 Subject: [PATCH] nvim: better hotkeys for file an buffer search --- nvim/lua/plugins.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nvim/lua/plugins.lua b/nvim/lua/plugins.lua index 30d3610..b547c5d 100644 --- a/nvim/lua/plugins.lua +++ b/nvim/lua/plugins.lua @@ -24,8 +24,8 @@ if require('packer_init') then return end require('lualine').setup() --[[ telescope maps ]] -map('n', 'ff', 'Telescope find_files') -map('n', 'fb', 'Telescope buffers') +map('n', '.', 'Telescope find_files') +map('n', ',', 'Telescope buffers') --[[ theme ]] vim.o.bg = 'dark'