diff options
| author | JP Appel <jeanpierre.appel01@gmail.com> | 2025-03-31 11:24:03 -0400 |
|---|---|---|
| committer | JP Appel <jeanpierre.appel01@gmail.com> | 2025-03-31 11:24:03 -0400 |
| commit | 2b6715b44044d6d0817ae530a9d32a3571c26223 (patch) | |
| tree | 782b4616545e1d60ccc7c2bb5fa977f2495ebc53 /nvim/lua/keymap.lua | |
| parent | a083c8ec55e5101269099de399d621dc03a9dea2 (diff) | |
Change telescope keybinds
Diffstat (limited to 'nvim/lua/keymap.lua')
| -rw-r--r-- | nvim/lua/keymap.lua | 3 |
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 |
