1
1
Fork 0
This commit is contained in:
Jo Wroten 2019-08-03 09:39:05 -05:00
parent aed8b27777
commit b3f8f6cf14

View file

@ -26,6 +26,8 @@ set scrolloff=3
set sidescrolloff=5
"" Enable autoread if file changes
set autoread
"" Map Leader to spacebar
let mapleader=" "
"---"
@ -38,6 +40,9 @@ Plug 'dracula/vim'
Plug 'dense-analysis/ale'
"" Ease of Editing Plugins
Plug 'tpope/vim-surround'
"" Project/File Navigation Plugins
Plug 'junegunn/fzf', { 'dir': '~/.fzf', 'do': './install --all' }
Plug 'junegunn/fzf.vim'
"" Initialize plugin system
call plug#end()
@ -45,3 +50,6 @@ call plug#end()
"" Colorscheme Dracula
let g:dracula_colorterm = 0 " Set background as transparent
colorscheme dracula
"" FZF
nnoremap <Leader>t :Files<cr>
nnoremap <Leader>T :Buffers<cr>