]> Sergey Matveev's repositories - vimslides.git/blob - vimslides.vim
ca854e1d5da84e3f877fa33394953361936f9533
[vimslides.git] / vimslides.vim
1 " vimslides -- presenation helper inside Vim
2 " Copyright (C) 2015 Sergey Matveev <stargrave@stargrave.org>
3 "
4 " This program is free software: you can redistribute it and/or modify
5 " it under the terms of the GNU General Public License as published by
6 " the Free Software Foundation, either version 3 of the License, or
7 " any later version.
8 "
9 " This program is distributed in the hope that it will be useful,
10 " but WITHOUT ANY WARRANTY; without even the implied warranty of
11 " MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 " GNU General Public License for more details.
13 "
14 " You should have received a copy of the GNU General Public License
15 " along with this program.  If not, see <http://www.gnu.org/licenses/>.
16
17 setlocal textwidth=72
18 setlocal nocursorline
19 setlocal foldmethod=indent
20 setlocal foldcolumn=0
21 setlocal colorcolumn=0
22 setlocal conceallevel=0
23 setlocal norelativenumber
24 setlocal laststatus=0
25
26 highlight clear ExtraWhitespace
27 syntax region pEmph matchgroup=Ignore start="|\S"rs=s+1 end="\S|"re=e-1 concealends
28 syntax region pBold matchgroup=Ignore start=":\S"rs=s+1 end="\S:"re=e-1 concealends
29 syntax region pUndr matchgroup=Ignore start="\s<\S"rs=s+2 end="\S>"re=e-1 concealends
30 syntax match pItem "^ *\*"
31 syntax match pLine "^-\+$"
32 highlight link pEmph Statement
33 highlight link pBold Special
34 highlight link pItem String
35 highlight link pLine PreProc
36 highlight link pUndr Type
37
38 nmap <leader>] zMzjzOz<CR>0
39 nmap <leader>[ zMzkzO[zz<CR>0
40 normal zMggzO
41
42 nmap <leader>i /IMG:/e+2<CR>y$:silent execute "!display " . @"<CR>:nohlsearch<CR>