]> Sergey Matveev's repositories - vimslides.git/blob - vimslides.vim
Raise copyright years
[vimslides.git] / vimslides.vim
1 " vimslides -- presenation helper inside Vim
2 " Copyright (C) 2015-2020 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, version 3 of the License.
7 "
8 " This program is distributed in the hope that it will be useful,
9 " but WITHOUT ANY WARRANTY; without even the implied warranty of
10 " MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11 " GNU General Public License for more details.
12 "
13 " You should have received a copy of the GNU General Public License
14 " along with this program.  If not, see <http://www.gnu.org/licenses/>.
15
16 syntax on
17 set encoding=utf-8
18 set nocompatible
19 set viminfo=
20
21 set t_Co=16
22
23 setlocal nocursorline
24 setlocal colorcolumn=0
25 setlocal norelativenumber
26 setlocal laststatus=0
27 setlocal scrolloff=2
28 setlocal conceallevel=2
29
30 setlocal shiftwidth=4
31 setlocal foldmethod=indent
32 setlocal foldnestmax=5
33 setlocal foldenable
34 setlocal foldcolumn=0
35 setlocal foldlevel=0
36
37 highlight clear ExtraWhitespace
38 syntax region pEmph matchgroup=Ignore start="|\S"rs=s+1 end="\S|"re=e-1
39 syntax region pBold matchgroup=Ignore start=":\S"rs=s+1 end="\S:"re=e-1
40 syntax region pUndr matchgroup=Ignore start="\s<\S"rs=s+2 end="\S>"re=e-1
41 syntax match pItem "^ *\*"
42 syntax match pLine "^-\+$"
43 highlight link pEmph Statement
44 highlight link pBold Special
45 highlight link pItem String
46 highlight link pLine PreProc
47 highlight link pUndr Type
48
49 nmap <leader>] zMzjzOz<CR>0
50 nmap <leader>[ zMzkzO[zz<CR>0
51 normal zMggzO
52
53 nmap <leader>i /IMG:/e+2<CR>y$:silent execute "!display " . @"<CR>:nohlsearch<CR>