""" " -- keymapping that uses functionality of plugins " universal mappings {{{ let g:UltiSnipsExpandTrigger = '' " }}} " normal mappings {{{ " ALE nmap [W (ale_first) nmap [w (ale_previous) nmap ]w (ale_next) nmap ]W (ale_last) " fzf nnoremap :FZF nnoremap b :Buffers nnoremap t :Tags nnoremap f :Rg " EasyAlign nnoremap ga (EasyAlign) " goyo.vim nnoremap gv :Goyo " LanugageClient (l for lang) nnoremap ld :call LanguageClient_textDocument_definition() nnoremap lr :call LanguageClient_textDocument_rename() nnoremap lt :call LanguageClient_textDocument_hover() nnoremap la :call LanguageClient_textDocument_codeAction() nnoremap ls :call LanguageClient_textDocument_documentSymbol() " NERDTree nnoremap n :NERDTreeToggle nnoremap N :NERDTreeFind " Neoformat nnoremap f :Neoformat " Tagbar nnoremap ct :TagbarToggle " }}} " insert mappings {{{ " SuperTab let g:SuperTabDefaultCompletionType = '' inoremap pumvisible() ? "\" : "\" " }}} " visual mappings {{{ " EasyAlign xmap ga (EasyAlign) " }}}