blob: 6d9f6e0d5ac6ba8f2b81e6076408d501508a4913 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
"======================================================================
"
" 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>
nnoremap <leader>co :Colors<CR>
nnoremap <leader><leader>ft :Filetypes<CR>
nnoremap <leader>b :Buffers<CR>
call plug#end()
|