gdritter repos dotfiles / 46b20f2
More merges Getty Ritter 5 years ago
3 changed file(s) with 23 addition(s) and 1 deletion(s). Collapse all Expand all
219219
220220 (use-package fountain-mode
221221 :ensure t)
222
223 (defun gdritter/rst-csv-to-latex ()
224 (interactive)
225 (let ((here (point)))
226 (while (re-search-forward "^ *\"" nil t)
227 (replace-match ""))
228 (goto-char here)
229 (while (re-search-forward "\", *\"" nil t)
230 (replace-match " & "))
231 (goto-char here)
232 (while (re-search-forward "\" *$" nil t)
233 (replace-match " \\\\\\\\"))
234 (goto-char here)))
222235
223236 ;; Pandoc can begin with YAML metadata, and sometimes a pandoc file
224237 ;; will indicate which format it should be using. I'm not going to
507520 ;; If there is more than one, they won't work right.
508521 '(package-selected-packages
509522 (quote
510 (emojify all-the-icons-dired all-the-icons groovy-mode jenkins docker-tramp ponylang-mode company-mode racer meson-mode company-coq dante asn1-mode go-mode zenburn-theme yue-mode yaml-mode web-mode vagrant use-package unicode-fonts twittering-mode tuareg toml-mode telml-mode suppl-mode solarized-theme scala-mode rust-mode py-autopep8 pico-ml-mode php-mode pandoc-mode org-jira ndbl-mode markdown-mode magit lua-mode jira idris-mode helm glsl-mode gidl-mode ghc fsharp-mode fountain-mode evil ensime elpy electric-boogaloo-mode dockerfile-mode dash-functional cryptol-mode color-theme-sanityinc-tomorrow color-theme adnot-mode))))
523 (auctex dante zenburn-theme yue-mode yaml-mode web-mode vagrant use-package unicode-fonts twittering-mode tuareg toml-mode telml-mode suppl-mode solarized-theme scala-mode rust-mode py-autopep8 pico-ml-mode pandoc-mode ndbl-mode markdown-mode magit lua-mode io-mode idris-mode helm glsl-mode gidl-mode ghc fsharp-mode fountain-mode evil erlang ensime elpy electric-boogaloo-mode dockerfile-mode dash-functional cryptol-mode color-theme-sanityinc-tomorrow color-theme adnot-mode))))
511524 (custom-set-faces
512525 ;; custom-set-faces was added by Custom.
513526 ;; If you edit it by hand, you could mess it up, so be careful.
141141
142142 -- Run an xmobar instance
143143 xmproc <- Run.spawnPipe "/home/gdritter/.cabal/bin/xmobar /home/gdritter/.xmobarrc"
144 xmproc <- Run.spawnPipe "/usr/bin/xmobar /home/gdritter/.xmobarrc"
144145 -- Run a graphical-only runit instance.
145146 -- XXX: kill this when xmonad dies somehow!
146147 void (Run.spawnPipe "runsvdir /home/gdritter/.run/service")
1 # change prefix to C-j
2 set -g prefix C-j
3 unbind C-b
4 bind C-j send-prefix
5
6 # change some colors
7 set -g status-bg red
8 bind-key U capture-pane \; save-buffer /tmp/tmux-buffer \; new-window -n "urlview" '$SHELL -c "urlview < /tmp/tmux-buffer"'