1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-02-23 17:41:32 +08:00
SpaceVim/autoload/SpaceVim/layers/lang/tmux.vim
2017-06-23 14:12:39 -05:00

14 lines
419 B
VimL

""
" @section lang#tmux, layer-lang-tmux
" @parentsection layers
" @subsection Intro
" The lang#tmux layer provides syntax highlighting, commenting, man page navigation
" and ability to execute lines as tmux commands.
" @section(layer-checkers)
function! SpaceVim#layers#lang#tmux#plugins() abort
let plugins = []
call add(plugins, ['tmux-plugins/vim-tmux', {'on_ft' : 'tmux'}])
return plugins
endfunction