add theme for telescope
This commit is contained in:
parent
13408cacac
commit
9816bfb18d
2
init.vim
2
init.vim
|
@ -36,8 +36,8 @@ autocmd FileType fzf tnoremap <buffer><silent><ESC> <ESC>
|
||||||
|
|
||||||
inoremap <silent><expr> <TAB>
|
inoremap <silent><expr> <TAB>
|
||||||
\ coc#pum#visible() ? coc#_select_confirm() :
|
\ coc#pum#visible() ? coc#_select_confirm() :
|
||||||
\ CheckBackspace() ? "\<TAB>" :
|
|
||||||
\ coc#expandableOrJumpable() ? "\<C-r>=coc#rpc#request('doKeymap', ['snippets-expand-jump',''])\<CR>" :
|
\ coc#expandableOrJumpable() ? "\<C-r>=coc#rpc#request('doKeymap', ['snippets-expand-jump',''])\<CR>" :
|
||||||
|
\ CheckBackspace() ? "\<TAB>" :
|
||||||
\ "\<TAB>"
|
\ "\<TAB>"
|
||||||
|
|
||||||
function! CheckBackspace() abort
|
function! CheckBackspace() abort
|
||||||
|
|
|
@ -46,6 +46,14 @@ require("telescope").setup{
|
||||||
"node_modules"
|
"node_modules"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
pickers = {
|
||||||
|
find_files = {
|
||||||
|
theme = "ivy"
|
||||||
|
},
|
||||||
|
live_grep = {
|
||||||
|
theme = "ivy"
|
||||||
|
}
|
||||||
|
},
|
||||||
extensions = {
|
extensions = {
|
||||||
fzf = {
|
fzf = {
|
||||||
fuzzy = true,
|
fuzzy = true,
|
||||||
|
|
Loading…
Reference in a new issue