Skip to content

Commit

Permalink
✨ Update Telescope layout to Ivy
Browse files Browse the repository at this point in the history
  • Loading branch information
albingroen committed Nov 20, 2021
1 parent 424d3cb commit e1d979e
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion lua/telescope-config.lua
Original file line number Diff line number Diff line change
@@ -1,4 +1,14 @@
require("telescope").load_extension("git_worktree")
local telescope = require("telescope")

telescope.setup{
pickers = {
find_files = {
theme = "ivy",
}
}
}

telescope.load_extension("git_worktree")

vim.api.nvim_set_keymap('n', '<C-P>', "<cmd>lua require('telescope.builtin').find_files()<CR>", { noremap = true })
vim.api.nvim_set_keymap('n', '<C-F>', "<cmd>lua require('telescope.builtin').live_grep()<CR>", { noremap = true })
Expand Down

0 comments on commit e1d979e

Please sign in to comment.