Update dots
This commit is contained in:
@@ -28,9 +28,9 @@
|
|||||||
+ [Nordic](https://github.com/EliverLara/Nordic): GTK Theme
|
+ [Nordic](https://github.com/EliverLara/Nordic): GTK Theme
|
||||||
+ [asetroot](https://github.com/Wilnath/asetroot): animated wallpaper
|
+ [asetroot](https://github.com/Wilnath/asetroot): animated wallpaper
|
||||||
+ [i3-swallow](https://github.com/jamesofarrell/i3-swallow): swallow terminal (not used anymore)
|
+ [i3-swallow](https://github.com/jamesofarrell/i3-swallow): swallow terminal (not used anymore)
|
||||||
+ [neovim-remote](https://github.com/mhinz/neovim-remote): zathura integration
|
+ [neovim-remote](https://github.com/mhinz/neovim-remote): zathura integration for nvim (unused)
|
||||||
+ [vim-plug](https://github.com/junegunn/vim-plug): vim plugin manager
|
+ [vim-plug](https://github.com/junegunn/vim-plug): vim plugin manager
|
||||||
+ fcitx + mozc: Japanese Keyboard - [Install](https://www.youtube.com/watch?v=lJoXhS4EUJs) - fcitx-im fcitx-configtool fcitx-mozc
|
+ fcitx + mozc: Japanese Keyboard - [Install](https://www.youtube.com/watch?v=lJoXhS4EUJs) - fcitx fcitx-qt5 fcitx-configtool fcitx-mozc
|
||||||
+ fzf: fuzzy file finder
|
+ fzf: fuzzy file finder
|
||||||
+ light: background light control
|
+ light: background light control
|
||||||
+ pactl: volume control
|
+ pactl: volume control
|
||||||
|
|||||||
1
files/.tmux/.tmux
Symbolic link
1
files/.tmux/.tmux
Symbolic link
@@ -0,0 +1 @@
|
|||||||
|
/home/marc/dots/files/.tmux
|
||||||
@@ -409,6 +409,41 @@
|
|||||||
(haskell-mode . lsp)
|
(haskell-mode . lsp)
|
||||||
(haskell-literate-mode . lsp))
|
(haskell-literate-mode . lsp))
|
||||||
|
|
||||||
|
;; custom
|
||||||
|
(use-package math-symbol-lists
|
||||||
|
:ensure t
|
||||||
|
:config
|
||||||
|
(quail-define-package "math" "UTF-8" "Ω" t)
|
||||||
|
(quail-define-rules ; add whatever extra rules you want to define here...
|
||||||
|
; Equality
|
||||||
|
("<=" ?≤)
|
||||||
|
(">=" ?≥)
|
||||||
|
("~=" ?≠)
|
||||||
|
; Logic
|
||||||
|
("~" ?¬)
|
||||||
|
("->" ?→)
|
||||||
|
("=>" ?⇒)
|
||||||
|
("<->" ?↔)
|
||||||
|
("<=>" ?⇔)
|
||||||
|
("/\\" ?∧)
|
||||||
|
("\\/" ?∨)
|
||||||
|
; Predicate Logic
|
||||||
|
("ALL" ?∀)
|
||||||
|
("EX" ?∃)
|
||||||
|
; sets of numbers
|
||||||
|
("\\nats" ?ℕ)
|
||||||
|
("\\ints" ?ℤ)
|
||||||
|
("\\rats" ?ℚ)
|
||||||
|
("\\reals" ?ℝ)
|
||||||
|
("\\complex" ?ℂ)
|
||||||
|
("\\primes" ?ℙ)
|
||||||
|
)
|
||||||
|
(mapc (lambda (x)
|
||||||
|
(if (cddr x)
|
||||||
|
(quail-defrule (cadr x) (car (cddr x)))))
|
||||||
|
(append math-symbol-list-basic math-symbol-list-extended))
|
||||||
|
)
|
||||||
|
|
||||||
(custom-set-variables
|
(custom-set-variables
|
||||||
;; custom-set-variables was added by Custom.
|
;; custom-set-variables was added by Custom.
|
||||||
;; If you edit it by hand, you could mess it up, so be careful.
|
;; If you edit it by hand, you could mess it up, so be careful.
|
||||||
|
|||||||
@@ -5,8 +5,10 @@ path=$(pwd)
|
|||||||
|
|
||||||
# --- home --- #
|
# --- home --- #
|
||||||
home_files="scripts .bashrc .zshrc .gitconfig .tmux .tmux.conf .vimrc .Xresources .xinitrc"
|
home_files="scripts .bashrc .zshrc .gitconfig .tmux .tmux.conf .vimrc .Xresources .xinitrc"
|
||||||
|
|
||||||
for file in $home_files
|
for file in $home_files
|
||||||
do
|
do
|
||||||
|
# rm, so folders also get updated
|
||||||
rm -rf $HOME/$file
|
rm -rf $HOME/$file
|
||||||
ln -sf $path/$file $HOME/$file
|
ln -sf $path/$file $HOME/$file
|
||||||
done
|
done
|
||||||
@@ -21,8 +23,10 @@ ln -sf $HOME/.xinitrc $HOME/.xsession
|
|||||||
|
|
||||||
# --- .config --- #
|
# --- .config --- #
|
||||||
conf_files="alacritty dunst nvim picom.conf ranger zathura"
|
conf_files="alacritty dunst nvim picom.conf ranger zathura"
|
||||||
|
|
||||||
for file in $conf_files
|
for file in $conf_files
|
||||||
do
|
do
|
||||||
|
# rm, so folders also get updated
|
||||||
rm -rf $HOME/.config/$file
|
rm -rf $HOME/.config/$file
|
||||||
ln -sf $path/.config/$file $HOME/.config/$file
|
ln -sf $path/.config/$file $HOME/.config/$file
|
||||||
done
|
done
|
||||||
|
|||||||
28
files/org/notes.org
Normal file
28
files/org/notes.org
Normal file
@@ -0,0 +1,28 @@
|
|||||||
|
#+LaTeX_CLASS: article
|
||||||
|
#+LaTeX_CLASS_OPTIONS: [letterpaper]
|
||||||
|
#+LANGUAGE: de
|
||||||
|
#+OPTIONS: toc:t
|
||||||
|
|
||||||
|
#+LATEX_HEADER: \usepackage{mathtools}
|
||||||
|
#+LATEX_HEADER: \usepackage{amsthm}
|
||||||
|
#+LATEX_HEADER: \usepackage{amssymb}
|
||||||
|
#+LATEX_HEADER: \usepackage{amsmath}
|
||||||
|
#+LATEX_HEADER: \usepackage[utf8]{inputenc}
|
||||||
|
#+LATEX_HEADER: \usepackage[T1]{fontenc}
|
||||||
|
#+LATEX_HEADER: \usepackage[ngerman]{babel}
|
||||||
|
#+LATEX_HEADER: \usepackage{hyphenat}
|
||||||
|
#+LATEX_HEADER: \usepackage{tikz}
|
||||||
|
#+LATEX_HEADER: \usepackage{graphicx}
|
||||||
|
#+LATEX_HEADER: \usepackage{listings}
|
||||||
|
#+LATEX_HEADER: \usepackage{color}
|
||||||
|
#+LATEX_HEADER: \usepackage{proof}
|
||||||
|
|
||||||
|
#+LATEX_HEADER: \theoremstyle{definition}
|
||||||
|
#+LATEX_HEADER: \newtheorem{def}{Definition}[section]
|
||||||
|
#+LATEX_HEADER: \newtheorem{theorem}{Satz}[section]
|
||||||
|
|
||||||
|
#+LATEX_HEADER: \theoremstyle{algo}
|
||||||
|
#+LATEX_HEADER: \newtheorem{algo}{Algorithmus}[section]
|
||||||
|
#+LATEX_HEADER: \newtheorem*{remark}{Bemerkung}
|
||||||
|
|
||||||
|
#+LATEX_HEADER: \date{\today}
|
||||||
1
files/scripts/scripts
Symbolic link
1
files/scripts/scripts
Symbolic link
@@ -0,0 +1 @@
|
|||||||
|
/home/marc/dots/files/scripts
|
||||||
Reference in New Issue
Block a user