Fzf
This commit is contained in:
parent
aed8b27777
commit
b3f8f6cf14
1 changed files with 8 additions and 0 deletions
|
@ -26,6 +26,8 @@ set scrolloff=3
|
||||||
set sidescrolloff=5
|
set sidescrolloff=5
|
||||||
"" Enable autoread if file changes
|
"" Enable autoread if file changes
|
||||||
set autoread
|
set autoread
|
||||||
|
"" Map Leader to spacebar
|
||||||
|
let mapleader=" "
|
||||||
|
|
||||||
"---"
|
"---"
|
||||||
|
|
||||||
|
@ -38,6 +40,9 @@ Plug 'dracula/vim'
|
||||||
Plug 'dense-analysis/ale'
|
Plug 'dense-analysis/ale'
|
||||||
"" Ease of Editing Plugins
|
"" Ease of Editing Plugins
|
||||||
Plug 'tpope/vim-surround'
|
Plug 'tpope/vim-surround'
|
||||||
|
"" Project/File Navigation Plugins
|
||||||
|
Plug 'junegunn/fzf', { 'dir': '~/.fzf', 'do': './install --all' }
|
||||||
|
Plug 'junegunn/fzf.vim'
|
||||||
"" Initialize plugin system
|
"" Initialize plugin system
|
||||||
call plug#end()
|
call plug#end()
|
||||||
|
|
||||||
|
@ -45,3 +50,6 @@ call plug#end()
|
||||||
"" Colorscheme Dracula
|
"" Colorscheme Dracula
|
||||||
let g:dracula_colorterm = 0 " Set background as transparent
|
let g:dracula_colorterm = 0 " Set background as transparent
|
||||||
colorscheme dracula
|
colorscheme dracula
|
||||||
|
"" FZF
|
||||||
|
nnoremap <Leader>t :Files<cr>
|
||||||
|
nnoremap <Leader>T :Buffers<cr>
|
||||||
|
|
Loading…
Add table
Reference in a new issue