neovim: Add telescope plugin
This commit is contained in:
parent
fd95cf8188
commit
f7d7ab2aa6
|
@ -56,6 +56,7 @@ in
|
|||
ncdu
|
||||
fd
|
||||
silver-searcher
|
||||
ripgrep
|
||||
thunderbird
|
||||
mosh
|
||||
mpv
|
||||
|
|
|
@ -72,6 +72,10 @@
|
|||
# zoom into windows
|
||||
zoomwintab-vim
|
||||
|
||||
# Telescope
|
||||
plenary-nvim
|
||||
telescope-nvim
|
||||
|
||||
];
|
||||
|
||||
extraConfig = ''
|
||||
|
@ -163,6 +167,10 @@
|
|||
\ }
|
||||
let g:neoformat_enabled_python = ['black', 'isort']
|
||||
|
||||
" Find files using Telescope
|
||||
nnoremap <leader>ff <cmd>Telescope find_files<cr>
|
||||
nnoremap <leader>fg <cmd>Telescope live_grep<cr>
|
||||
|
||||
lua << EOF
|
||||
require'netrw'.setup{}
|
||||
require("auto-session").setup {
|
||||
|
|
Loading…
Reference in a new issue