Resolve merge
Getty Ritter
7 years ago
| 221 | 221 |
|
| 222 | 222 |
(use-package fountain-mode
|
| 223 | 223 |
:ensure t)
|
| 224 |
|
| 225 |
(defun gdritter/rst-csv-to-latex ()
|
| 226 |
(interactive)
|
| 227 |
(let ((here (point)))
|
| 228 |
(while (re-search-forward "^ *\"" nil t)
|
| 229 |
(replace-match ""))
|
| 230 |
(goto-char here)
|
| 231 |
(while (re-search-forward "\", *\"" nil t)
|
| 232 |
(replace-match " & "))
|
| 233 |
(goto-char here)
|
| 234 |
(while (re-search-forward "\" *$" nil t)
|
| 235 |
(replace-match " \\\\\\\\"))
|
| 236 |
(goto-char here)))
|
| 224 | 237 |
|
| 225 | 238 |
;; Pandoc can begin with YAML metadata, and sometimes a pandoc file
|
| 226 | 239 |
;; will indicate which format it should be using. I'm not going to
|
|
| 501 | 514 |
(if (getenv "NARROW")
|
| 502 | 515 |
(bzg-big-fringe-mode 1))
|
| 503 | 516 |
(put 'narrow-to-region 'disabled nil)
|
| 517 |
|
| 504 | 518 |
(custom-set-variables
|
| 505 | 519 |
;; custom-set-variables was added by Custom.
|
| 506 | 520 |
;; If you edit it by hand, you could mess it up, so be careful.
|
|
| 508 | 522 |
;; If there is more than one, they won't work right.
|
| 509 | 523 |
'(package-selected-packages
|
| 510 | 524 |
(quote
|
| 511 | |
(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))))
|
| 525 |
(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))))
|
| 512 | 526 |
(custom-set-faces
|
| 513 | 527 |
;; custom-set-faces was added by Custom.
|
| 514 | 528 |
;; If you edit it by hand, you could mess it up, so be careful.
|
| 139 | 139 |
void (Sys.createProcess (Sys.proc "sh" ["/home/gdritter/.xm-init"]))
|
| 140 | 140 |
|
| 141 | 141 |
-- Run an xmobar instance
|
| 142 | |
xmproc <- Run.spawnPipe "xmobar /home/gdritter/.xmobarrc"
|
| 142 |
xmproc <- Run.spawnPipe "/usr/bin/xmobar /home/gdritter/.xmobarrc"
|
| 143 | 143 |
-- Run a graphical-only runit instance.
|
| 144 | 144 |
-- XXX: kill this when xmonad dies somehow!
|
| 145 | 145 |
void (Run.spawnPipe "runsvdir /home/gdritter/.run/service")
|