You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
kickstart.nvim/after/plugin/final.lua

11 lines
243 B
Lua

local builtin = require 'telescope.builtin'
vim.keymap.set('n', '<C-s>', function()
builtin.current_buffer_fuzzy_find()
end)
-- Use vimacs version
--
-- vim.keymap.set('i', '<C-s>', function()
-- builtin.current_buffer_fuzzy_find()
--end)