My vim configuration
git clone https://github.com/m-col/vim-misc
Files | Refs | Readme

Commit 170794da722445a24ef2bf209059187658fc4324
Parent: ddeac4ebcd35713cd70856adfe4b8448b549ef5f
Author: matt colligan <mlv@posteo.net>
Date: 2025-06-06 12:13:03 +0100
Committer: matt colligan <mlv@posteo.net>
Committed: 2025-06-06 12:13:03 +0100

get telescope ctrlp working again

start/self/plugin/keybindings.vim Modified

@@ -126,6 +126,10 @@
 nmap <silent> <C-i> <Plug>(ale_find_references)
 nmap <silent> <C-]> <Plug>(ale_go_to_definition)
 
+" telescope
+nnoremap <silent> <C-p> :Telescope git_files<CR>
+"nnoremap <silent> <C-o> :Telescope tags<CR>  " isn't working
+
 " CtrlP (in addition to the default Ctrl-p binding)
 nnoremap <silent> <C-o> :CtrlPTag<CR>
 

start/self/plugin/init.lua Modified

@@ -81,6 +81,9 @@
   },
   {
       'ctrlpvim/ctrlp.vim',
+      init = function()
+        vim.g.ctrlp_map = ''  -- Disable the default <C-p> mapping
+      end,
   },
   {
       'ludovicchabant/vim-gutentags',