Add neovim for real

This commit is contained in:
Fabian Ising
2018-07-29 16:29:44 +02:00
parent 1a47a9f316
commit 47d4930bcc
200 changed files with 28808 additions and 1 deletions

View File

@@ -0,0 +1,11 @@
snippet dprintk "Printk current func and debug info ..."
printk("%s:%d:%s: ${1}\n",__FILE__,__LINE__, __FUNCTION__${2});
endsnippet
snippet dprint "Printk current func and debug info ..."
printf("%s:%d:%s: ${1}\n",__FILE__,__LINE__, __FUNCTION__${2});
endsnippet
snippet dprintf "Printk current func and debug info ..."
printf("%s:%d:%s: ${1}\n",__FILE__,__LINE__, __FUNCTION__${2});
endsnippet

View File

@@ -0,0 +1,16 @@
snippet transframe "Transdissolving frame environment" b
\begin{frame}[t]{${1:title}}
\transdissolve
\vfill
${2:content}
\vfill
\end{frame}
endsnippet
snippet tikzfile
\setbeamercovered{invisible}
\begin{tikzpicture}[->,thick, node distance=1cm]
\end{tikzpicture}
% vim: set fo-=t: vim: set fo-=t:
endsnippet