Add telescope-nvim

This commit is contained in:
Dave Gallant
2021-07-08 13:35:22 -04:00
parent 405ff357af
commit ea443a5b17
3 changed files with 9 additions and 7 deletions

View File

@@ -242,6 +242,7 @@ in
extraConfig = '' extraConfig = ''
set -g @plugin 'seebi/tmux-colors-solarized' set -g @plugin 'seebi/tmux-colors-solarized'
set -g @colors-solarized 'dark' set -g @colors-solarized 'dark'
set -sg escape-time 0
''; '';
} }
]; ];
@@ -293,14 +294,13 @@ in
coc-json coc-json
coc-nvim coc-nvim
coc-rls coc-rls
fzf-vim
fzfWrapper
gruvbox gruvbox
nerdtree nerdtree
rust-vim rust-vim
supertab supertab
syntastic syntastic
tabular tabular
telescope-nvim
typescript-vim typescript-vim
vim-commentary vim-commentary
vim-fugitive vim-fugitive

View File

@@ -112,9 +112,11 @@ let g:syntastic_auto_loc_list = 1
let g:syntastic_check_on_open = 1 let g:syntastic_check_on_open = 1
let g:syntastic_check_on_wq = 0 let g:syntastic_check_on_wq = 0
" fzf.vim " telescope-nvim
let g:fzf_preview_window = 'up:50%' nnoremap <leader>ff <cmd>Telescope find_files<cr>
let g:fzf_layout = { 'window': 'enew' } nnoremap <leader>fg <cmd>Telescope live_grep<cr>
nnoremap <leader>fb <cmd>Telescope buffers<cr>
nnoremap <leader>fh <cmd>Telescope help_tags<cr>
" vim-markdown " vim-markdown
let g:vim_markdown_override_foldtext=0 let g:vim_markdown_override_foldtext=0

View File

@@ -46,9 +46,9 @@
"com.apple.sound.beep.volume" = "0.000"; "com.apple.sound.beep.volume" = "0.000";
ApplePressAndHoldEnabled = false; ApplePressAndHoldEnabled = false;
# delay before repeating keystrokes # delay before repeating keystrokes
InitialKeyRepeat = 15; InitialKeyRepeat = 10;
# delay between repeated keystrokes upon holding a key # delay between repeated keystrokes upon holding a key
KeyRepeat = 5; KeyRepeat = 2;
AppleShowAllExtensions = true; AppleShowAllExtensions = true;
AppleShowScrollBars = "Automatic"; AppleShowScrollBars = "Automatic";
}; };