1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-02-03 02:30:03 +08:00
This commit is contained in:
wsdjeg 2017-03-26 16:19:25 +08:00
parent 4d5e513628
commit eb693b82a3

View File

@ -60,8 +60,12 @@ function! SpaceVim#layers#tools#config() abort
" List of colors that you do not want. ANSI code or #RRGGBB
let g:rainbow#blacklist = [233, 234]
nnoremap <Leader>fz :FZF<CR>
vnoremap <silent> <C-l> <Esc>:Ydv<CR>
nnoremap <silent> <C-l> <Esc>:Ydc<CR>
if maparg('<C-l>', 'v') == ''
vnoremap <silent> <C-l> <Esc>:Ydv<CR>
endif
if maparg('<C-l>', 'n') == ''
nnoremap <silent> <C-l> <Esc>:Ydc<CR>
endif
map <unique> <Leader>td <Plug>TaskList
noremap <silent> <F8> :TlistToggle<CR>
function! OpenOrCloseNERDTree() abort