mirror of
https://github.com/keanuplayz/dotfiles.git
synced 2024-08-15 02:33:12 +00:00
[nvim] Add telescope.nvim
This commit is contained in:
parent
541bf2a3f2
commit
341f862da6
2 changed files with 12 additions and 4 deletions
4
nvim/after/plugin/keybinds.vim
Normal file
4
nvim/after/plugin/keybinds.vim
Normal file
|
@ -0,0 +1,4 @@
|
|||
nnoremap <leader>ff <cmd>Telescope find_files<cr>
|
||||
nnoremap <leader>fg <cmd>Telescope live_grep<cr>
|
||||
nnoremap <leader>fb <cmd>Telescope buffers<cr>
|
||||
nnoremap <leader>fh <cmd>Telescope help_tags<cr>
|
|
@ -5,6 +5,12 @@ let s:plug = funcref('dotfiles#plugman#register')
|
|||
call s:plug('hoob3rt/lualine.nvim')
|
||||
" }}}
|
||||
|
||||
" Navigation {{{
|
||||
call s:plug('nvim-telescope/telescope.nvim') " dependencies {{{
|
||||
call s:plug('nvim-lua/plenary.nvim')
|
||||
" }}}
|
||||
" }}}
|
||||
|
||||
" Files {{{
|
||||
call s:plug('preservim/nerdtree')
|
||||
call s:plug('kyazdani42/nvim-web-devicons')
|
||||
|
@ -25,11 +31,9 @@ let s:plug = funcref('dotfiles#plugman#register')
|
|||
" }}}
|
||||
|
||||
" Misc {{{
|
||||
if has('nvim-0.5.0')
|
||||
call s:plug('andweeb/presence.nvim')
|
||||
endif
|
||||
call s:plug('andweeb/presence.nvim')
|
||||
call s:plug('wakatime/vim-wakatime')
|
||||
if has('nvim-0.6.0')
|
||||
call s:plug('github/copilot.vim')
|
||||
endif
|
||||
call s:plug('wakatime/vim-wakatime')
|
||||
" }}}
|
||||
|
|
Loading…
Reference in a new issue