aboutsummaryrefslogtreecommitdiffstats
path: root/nvim/lua/keymap.lua
diff options
context:
space:
mode:
authorJP Appel <jeanpierre.appel01@gmail.com>2025-03-31 11:24:03 -0400
committerJP Appel <jeanpierre.appel01@gmail.com>2025-03-31 11:24:03 -0400
commit2b6715b44044d6d0817ae530a9d32a3571c26223 (patch)
tree782b4616545e1d60ccc7c2bb5fa977f2495ebc53 /nvim/lua/keymap.lua
parenta083c8ec55e5101269099de399d621dc03a9dea2 (diff)
Change telescope keybinds
Diffstat (limited to 'nvim/lua/keymap.lua')
-rw-r--r--nvim/lua/keymap.lua3
1 files changed, 3 insertions, 0 deletions
diff --git a/nvim/lua/keymap.lua b/nvim/lua/keymap.lua
index 56f5491..5c6e39a 100644
--- a/nvim/lua/keymap.lua
+++ b/nvim/lua/keymap.lua
@@ -2,6 +2,9 @@ local shared = require('shared')
local M = {}
+-- disable ctrl-f to work nicer with telescope binds
+vim.keymap.set('n', '<C-f>', '<NOP>')
+
vim.keymap.set('n', 'gf', function() shared.cmd_pcall(':e <cfile>') end, { noremap = true })
vim.keymap.set('n', "<Leader>q", function()
if vim.o.ft == "qf" then