More merges
Getty Ritter
6 years ago
219 | 219 |
|
220 | 220 |
(use-package fountain-mode
|
221 | 221 |
: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)))
|
222 | 235 |
|
223 | 236 |
;; Pandoc can begin with YAML metadata, and sometimes a pandoc file
|
224 | 237 |
;; will indicate which format it should be using. I'm not going to
|
|
507 | 520 |
;; If there is more than one, they won't work right.
|
508 | 521 |
'(package-selected-packages
|
509 | 522 |
(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))))
|
511 | 524 |
(custom-set-faces
|
512 | 525 |
;; custom-set-faces was added by Custom.
|
513 | 526 |
;; If you edit it by hand, you could mess it up, so be careful.
|
141 | 141 |
|
142 | 142 |
-- Run an xmobar instance
|
143 | 143 |
xmproc <- Run.spawnPipe "/home/gdritter/.cabal/bin/xmobar /home/gdritter/.xmobarrc"
|
| 144 |
xmproc <- Run.spawnPipe "/usr/bin/xmobar /home/gdritter/.xmobarrc"
|
144 | 145 |
-- Run a graphical-only runit instance.
|
145 | 146 |
-- XXX: kill this when xmonad dies somehow!
|
146 | 147 |
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"'
|