blob: a96c14d327ed183c421d1f479dead55bcdffcc1d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
"======================================================================
"
" init-plugins.vim
"
" Created by skywind on 2018/05/31
" Last Modified: 2018/06/10 23:11
"
"======================================================================
" vim: set ts=4 sw=4 tw=78 noet :
call plug#begin('~/.vim/plugged')
Plug 'junegunn/fzf.vim'
nnoremap <leader>sf :Files<CR>
nnoremap <leader>sg :GFiles<CR>
call plug#end()
|