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