diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2013-02-20 10:20:44 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2013-02-20 10:20:44 +0000 |
commit | e68b9abd0403d09c6af993427482e27c0f308765 (patch) | |
tree | 841aa7cb6337716d31ff6f688d451478e051caa3 /examples/tmux.vim | |
parent | 8a7d463b87d709914762e32d388ac7af75bbe65b (diff) | |
parent | 4621a521837d2772b6bd69b038e35391eb6f1c18 (diff) | |
download | rtmux-e68b9abd0403d09c6af993427482e27c0f308765.tar.gz rtmux-e68b9abd0403d09c6af993427482e27c0f308765.tar.bz2 rtmux-e68b9abd0403d09c6af993427482e27c0f308765.zip |
Merge branch 'master' of ssh://git.code.sf.net/p/tmux/tmux-code
Diffstat (limited to 'examples/tmux.vim')
-rw-r--r-- | examples/tmux.vim | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/examples/tmux.vim b/examples/tmux.vim index f1a98be4..076115c1 100644 --- a/examples/tmux.vim +++ b/examples/tmux.vim @@ -3,6 +3,20 @@ " Maintainer: Tiago Cunha <tcunha@users.sourceforge.net> " Last Change: $Date: 2010-07-27 18:29:07 $ " License: This file is placed in the public domain. +" +" To install this file: +" +" - Drop the file in the syntax directory into runtimepath (such as +" ~/.vim/syntax/tmux.vim). +" - Make the filetype recognisable by adding the following to filetype.vim +" (~/.vim/filetype.vim): +" +" augroup filetypedetect +" au BufNewFile,BufRead .tmux.conf*,tmux.conf* setf tmux +" augroup END +" +" - Switch on syntax highlighting by adding "syntax enable" to .vimrc. +" if version < 600 syntax clear |