add theme for telescope

This commit is contained in:
Robert Altner 2024-06-13 09:48:12 +02:00
parent 13408cacac
commit 9816bfb18d
No known key found for this signature in database
GPG key ID: 58794C52DAF9EAD8
2 changed files with 9 additions and 1 deletions

View file

@ -36,8 +36,8 @@ autocmd FileType fzf tnoremap <buffer><silent><ESC> <ESC>
inoremap <silent><expr> <TAB>
\ coc#pum#visible() ? coc#_select_confirm() :
\ CheckBackspace() ? "\<TAB>" :
\ coc#expandableOrJumpable() ? "\<C-r>=coc#rpc#request('doKeymap', ['snippets-expand-jump',''])\<CR>" :
\ CheckBackspace() ? "\<TAB>" :
\ "\<TAB>"
function! CheckBackspace() abort

View file

@ -46,6 +46,14 @@ require("telescope").setup{
"node_modules"
}
},
pickers = {
find_files = {
theme = "ivy"
},
live_grep = {
theme = "ivy"
}
},
extensions = {
fzf = {
fuzzy = true,