]> Sergey Matveev's repositories - vimslides.git/blob - vimslides.vim
471a9ffaad6570a3ad0cf624654258fbaf41c25c
[vimslides.git] / vimslides.vim
1 " vimslides -- presenation helper inside Vim
2 " Copyright (C) 2015-2019 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 syntax on
18 set encoding=utf-8
19 set nocompatible
20 set viminfo=
21
22 set t_Co=16
23
24 setlocal nocursorline
25 setlocal colorcolumn=0
26 setlocal norelativenumber
27 setlocal laststatus=0
28 setlocal scrolloff=2
29 setlocal conceallevel=2
30
31 setlocal shiftwidth=4
32 setlocal foldmethod=indent
33 setlocal foldnestmax=5
34 setlocal foldenable
35 setlocal foldcolumn=0
36 setlocal foldlevel=0
37
38 highlight clear ExtraWhitespace
39 syntax region pEmph matchgroup=Ignore start="|\S"rs=s+1 end="\S|"re=e-1
40 syntax region pBold matchgroup=Ignore start=":\S"rs=s+1 end="\S:"re=e-1
41 syntax region pUndr matchgroup=Ignore start="\s<\S"rs=s+2 end="\S>"re=e-1
42 syntax match pItem "^ *\*"
43 syntax match pLine "^-\+$"
44 highlight link pEmph Statement
45 highlight link pBold Special
46 highlight link pItem String
47 highlight link pLine PreProc
48 highlight link pUndr Type
49
50 nmap <leader>] zMzjzOz<CR>0
51 nmap <leader>[ zMzkzO[zz<CR>0
52 normal zMggzO
53
54 nmap <leader>i /IMG:/e+2<CR>y$:silent execute "!display " . @"<CR>:nohlsearch<CR>