1
0
mirror of https://github.com/gryf/.vim.git synced 2025-12-17 11:30:29 +01:00

Moja prawie współczesna konfiguracja. Dużo rzeczy :)

This commit is contained in:
2010-04-11 20:41:45 +02:00
parent 74c5c4085f
commit 63717266b9
173 changed files with 61061 additions and 1933 deletions

37
snippets/mkd.snippets Normal file
View File

@@ -0,0 +1,37 @@
snippet pgbreak
<p class="break">&nbsp;</p>
snippet brk
<p class="break">&nbsp;</p>
snippet head
<head>
<style type='text/css'>
.break { page-break-after: always; text-indent: 0em; }
.toc { page-break-after: always; text-indent: 0em; }
.tocpn {text-align: right; }
.tocchr {text-align: right;}
.hanging_indent { padding-left:4em; text-indent:-4em }
.drop { text-indent: 0pt}
.drop:first-letter { font-size:xx-large}
.centre {text-align: center; }
</style>
</head>
snippet toc
///Table of Contents///
snippet title
# ${1:title}
snippet author
# ${1: author}
snippet autor
# ${1: author}
snippet chapter
## ${1: chapter}
snippet bold
**${1: bold}**
snippet italic
*${1:italic}*
snippet img
!${1:[Alt text]}(${2:/path/to/img.jpg}${3: "Optional title"})
snippet table
| |* Col 1 *|* Col 2 *|
|* Row 1 *| (1, 1) | (1, 2) |
|* Row 2 *| (2, 1) | (2, 2) |