diff --git a/.config/termite/config b/.config/termite/config index ec4489c..eac2e21 100644 --- a/.config/termite/config +++ b/.config/termite/config @@ -48,7 +48,7 @@ hyperlinks = true #foreground_bold = #ffffff # 20% background transparency (requires a compositor) -background = rgba(63, 63, 63, 0.8) +background = rgba(63, 63, 63, 0.4) # If unset, will reverse foreground and background #highlight = #2f2f2f diff --git a/.emacs b/.emacs index 3f15eef..172d91d 100644 --- a/.emacs +++ b/.emacs @@ -49,6 +49,13 @@ ((= 16 opt) "s")))) (insert (shell-command-to-string (concat "xsel -o -" opt)))))) +;; Latex +(fset 'next-section + (lambda (&optional arg) "Keyboard macro." (interactive "p") (kmacro-exec-ring-item (quote ("\\sec " 0 "%d")) arg))) +(fset 'prev-section + (lambda (&optional arg) "Keyboard macro." (interactive "p") (kmacro-exec-ring-item (quote ("\\sec " 0 "%d")) arg))) + +;; Theme (custom-set-variables ;; custom-set-variables was added by Custom. ;; If you edit it by hand, you could mess it up, so be careful. @@ -67,6 +74,7 @@ '(font-latex-bold-face ((t (:foreground "brightcyan")))) '(font-latex-sedate-face ((t (:foreground "brightcyan")))) '(font-lock-comment-face ((t (:foreground "color-142")))) + '(font-lock-doc-face ((t (:foreground "color-242")))) '(font-lock-keyword-face ((t (:foreground "brightcyan" :weight bold)))) '(font-lock-type-face ((t (:foreground "green"))))) @@ -83,6 +91,10 @@ (setq TeX-auto-save t) (setq TeX-parse-self t) (setq-default TeX-master nil) +(eval-after-load 'latex + '(define-key LaTeX-mode-map (kbd "C-c n") 'next-section)) +(eval-after-load 'latex + '(define-key LaTeX-mode-map (kbd "C-c p") 'prev-section)) ;; Tex To PDF (require 'tex) (TeX-global-PDF-mode t) diff --git a/.emacs.d/elpa/elpy-20171220.504/elpy/__pycache__/__main__.cpython-36.pyc b/.emacs.d/elpa/elpy-20171220.504/elpy/__pycache__/__main__.cpython-36.pyc index 808777d..7030672 100644 Binary files a/.emacs.d/elpa/elpy-20171220.504/elpy/__pycache__/__main__.cpython-36.pyc and b/.emacs.d/elpa/elpy-20171220.504/elpy/__pycache__/__main__.cpython-36.pyc differ diff --git a/.emacs.d/elpa/elpy-20171220.504/elpy/__pycache__/auto_pep8.cpython-36.pyc b/.emacs.d/elpa/elpy-20171220.504/elpy/__pycache__/auto_pep8.cpython-36.pyc index f98bdaa..d2233f7 100644 Binary files a/.emacs.d/elpa/elpy-20171220.504/elpy/__pycache__/auto_pep8.cpython-36.pyc and b/.emacs.d/elpa/elpy-20171220.504/elpy/__pycache__/auto_pep8.cpython-36.pyc differ diff --git a/.emacs.d/elpa/elpy-20171220.504/elpy/__pycache__/compat.cpython-36.pyc b/.emacs.d/elpa/elpy-20171220.504/elpy/__pycache__/compat.cpython-36.pyc index dbb2b95..a0229c5 100644 Binary files a/.emacs.d/elpa/elpy-20171220.504/elpy/__pycache__/compat.cpython-36.pyc and b/.emacs.d/elpa/elpy-20171220.504/elpy/__pycache__/compat.cpython-36.pyc differ diff --git a/.emacs.d/elpa/elpy-20171220.504/elpy/__pycache__/jedibackend.cpython-36.pyc b/.emacs.d/elpa/elpy-20171220.504/elpy/__pycache__/jedibackend.cpython-36.pyc index ba19db5..3e254dc 100644 Binary files a/.emacs.d/elpa/elpy-20171220.504/elpy/__pycache__/jedibackend.cpython-36.pyc and b/.emacs.d/elpa/elpy-20171220.504/elpy/__pycache__/jedibackend.cpython-36.pyc differ diff --git a/.emacs.d/elpa/elpy-20171220.504/elpy/__pycache__/pydocutils.cpython-36.pyc b/.emacs.d/elpa/elpy-20171220.504/elpy/__pycache__/pydocutils.cpython-36.pyc index 918ab7b..6c8e76a 100644 Binary files a/.emacs.d/elpa/elpy-20171220.504/elpy/__pycache__/pydocutils.cpython-36.pyc and b/.emacs.d/elpa/elpy-20171220.504/elpy/__pycache__/pydocutils.cpython-36.pyc differ diff --git a/.emacs.d/elpa/elpy-20171220.504/elpy/__pycache__/rpc.cpython-36.pyc b/.emacs.d/elpa/elpy-20171220.504/elpy/__pycache__/rpc.cpython-36.pyc index 0148487..ab30162 100644 Binary files a/.emacs.d/elpa/elpy-20171220.504/elpy/__pycache__/rpc.cpython-36.pyc and b/.emacs.d/elpa/elpy-20171220.504/elpy/__pycache__/rpc.cpython-36.pyc differ diff --git a/.emacs.d/elpa/elpy-20171220.504/elpy/__pycache__/server.cpython-36.pyc b/.emacs.d/elpa/elpy-20171220.504/elpy/__pycache__/server.cpython-36.pyc index 37b3d48..f7ce843 100644 Binary files a/.emacs.d/elpa/elpy-20171220.504/elpy/__pycache__/server.cpython-36.pyc and b/.emacs.d/elpa/elpy-20171220.504/elpy/__pycache__/server.cpython-36.pyc differ diff --git a/.emacs.d/elpa/elpy-20171220.504/elpy/__pycache__/yapfutil.cpython-36.pyc b/.emacs.d/elpa/elpy-20171220.504/elpy/__pycache__/yapfutil.cpython-36.pyc index f6b5ae5..6813d7b 100644 Binary files a/.emacs.d/elpa/elpy-20171220.504/elpy/__pycache__/yapfutil.cpython-36.pyc and b/.emacs.d/elpa/elpy-20171220.504/elpy/__pycache__/yapfutil.cpython-36.pyc differ diff --git a/.emacs.d/snippets/c++-mode/.yas-parents b/.emacs.d/snippets/c++-mode/.yas-parents index b269357..ce9828b 100644 --- a/.emacs.d/snippets/c++-mode/.yas-parents +++ b/.emacs.d/snippets/c++-mode/.yas-parents @@ -1,2 +1 @@ cc-mode -c-lang-common diff --git a/.emacs.d/snippets/c++-mode/.yas-setup.elc b/.emacs.d/snippets/c++-mode/.yas-setup.elc new file mode 100644 index 0000000..6cbc4c7 Binary files /dev/null and b/.emacs.d/snippets/c++-mode/.yas-setup.elc differ diff --git a/.emacs.d/snippets/latex-mode/fsrtable b/.emacs.d/snippets/latex-mode/fsrtable index b35f271..db8385c 100644 --- a/.emacs.d/snippets/latex-mode/fsrtable +++ b/.emacs.d/snippets/latex-mode/fsrtable @@ -2,10 +2,9 @@ # name: fsrtable # key: fsrtable # -- - -Abstimmung +\\\\ \begin{tabular}{ccc} \toprule Ja & Nein & Enthaltung \\\\\midrule -3 & 1 & 9 \\\\\bottomrule -\end{tabularx} +0 & 0 & 0 \\\\\bottomrule +\end{tabular} \ No newline at end of file diff --git a/.emacs.d/snippets/latex-mode/fsrtemplate b/.emacs.d/snippets/latex-mode/fsrtemplate index e6a328e..32753ea 100644 --- a/.emacs.d/snippets/latex-mode/fsrtemplate +++ b/.emacs.d/snippets/latex-mode/fsrtemplate @@ -47,21 +47,48 @@ \subsection{Eröffnung der Sitzung / Feststellung der Beschlussfähigkeit} \begin{itemize} -\item anwesende Fachschaftsräte: +\item anwesende Fachschaftsräte: % Nach dem FSR 2017/18 \begin{itemize} - \item + \item Jens-Rene Giesen + \item Nicolas Hasselhuhn + \item Ella Pohl + \item Johannes Waltmann + \item Mady Reimers + \item Annika Bendel + \item J\"oran Hesse + \item Marcel Zutter % Marecel Zutter + \item Hilal Bektas + \item Sebastian D\"omckes + \item Marvin Prochzka + \item Tobias Braun \end{itemize} \item abwesende Fachschaftsräte: \begin{itemize} - \item + \item Niemand \end{itemize} \item anwesende Helfer: \begin{itemize} - \item + \item Sarah Delfing + \item Roman Heger + \item Christoph Anders + \item Jana Schmitz + \item Tobias Vennemann + \item Trutz Beckerpape + \item Markus Heikamp + \item Tim-Dennis Slotta + \item Tim Karbe + \item David Steimel + \item Tobias Stottrop + \item Stefan Lewin + \item Jan Sellerbeck + \end{itemize} + +\item anwesende G\"aste: + \begin{itemize} + \item B\"arserker \heart \end{itemize} - \item Die Beschlussfähigkeit wurde festgestellt. \end{itemize} diff --git a/.gitignore b/.gitignore index d3a3935..7aeddb2 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ *~ \#*\# *.log +fsrtemplate \ No newline at end of file