resolved
Getty Ritter
9 years ago
| 1 | |
URxvt.urlLauncher: firefox
|
| 1 |
URxvt.url-launcher: /usr/bin/firefox
|
| 2 |
URxvt.keysym.M-Delete: perl:matcher:list
|
| 3 |
URxvt.perl-ext-common: default,matcher
|
| 2 | 4 |
Urxvt.matcher.button: 1
|
| 3 | 5 |
URxvt.perl-exp.common: matcher
|
| 4 | 6 |
URxvt.transparent: true
|
| 5 | 7 |
URxvt.shading: 10
|
| 6 | 8 |
Urxvt.scrollBar: false
|
| 7 | |
URxvt.font: xft:Inconsolata:style=Medium:size=10,xft:Symbola:style=Regular:size=10
|
| 9 |
URxvt.font: xft:Inconsolata:style=Medium:size=14,xft:Symbola:style=Regular:size=14
|
| 8 | 10 |
URxvt*.foreground: white
|
| 9 | 11 |
URxvt*.background: black
|
| 12 |
URxvt.print-pipe: "cat >/dev/null"
|
| 10 | 13 |
|
| 11 | 14 |
Emacs.font: Inconsolata
|
| 12 | 15 |
Emacs.fontBackend: xft
|
| 68 | 68 |
(use-package twittering-mode
|
| 69 | 69 |
:ensure t
|
| 70 | 70 |
:defer t
|
| 71 | |
:init (setq twittering-use-master-password t))
|
| 71 |
:init (progn
|
| 72 |
(setq twittering-use-master-password t)
|
| 73 |
(setq twittering-cert-file "/etc/ssl/certs/ca-certificates.crt")))
|
| 72 | 74 |
|
| 73 | 75 |
;; for redo syntax highlighting
|
| 74 | 76 |
(add-to-list 'auto-mode-alist '("\\.do\\'" . sh-mode))
|
|
| 83 | 85 |
(use-package lua-mode
|
| 84 | 86 |
:ensure t)
|
| 85 | 87 |
|
| 88 |
(use-package scala-mode
|
| 89 |
:ensure t)
|
| 90 |
|
| 91 |
(use-package ensime
|
| 92 |
:ensure t
|
| 93 |
:init (add-hook 'scala-mode-hook 'ensime-scala-mode-hook))
|
| 94 |
|
| 86 | 95 |
|
| 87 | 96 |
|
| 88 | 97 |
|
| 89 | 98 |
;; tuareg-mode
|
| 90 | 99 |
|
| 91 | 100 |
(use-package tuareg
|
| 92 | 101 |
:ensure t
|
| 93 | |
:defer t
|
| 94 | |
:init
|
| 95 | |
(progn
|
| 96 | |
(autoload 'tuareg-mode "tuareg-mode"
|
| 97 | |
"Major mode for editing Caml or whatever." t)
|
| 98 | |
(autoload 'camldebug "camldebug" "Run the Caml debugger" t)
|
| 99 | |
(autoload 'tuareg-imenu-set-imenu "tuareg-imenu"
|
| 100 | |
"Configuration of imenu for tuareg" t)
|
| 101 | |
(add-hook 'tuareg-mode-hook 'tuareg-imenu-set-imenu)))
|
| 102 |
:defer t)
|
| 102 | 103 |
|
| 103 | 104 |
|
| 11 | 11 |
import XMonad
|
| 12 | 12 |
import XMonad.Hooks.DynamicLog
|
| 13 | 13 |
import XMonad.Hooks.ManageDocks (manageDocks, avoidStruts)
|
| 14 |
import XMonad.Layout.NoBorders (noBorders, smartBorders)
|
| 14 | 15 |
import XMonad.Layout.Tabbed
|
| 15 | 16 |
import XMonad.Util.Run(spawnPipe)
|
| 16 | 17 |
|
|
| 27 | 28 |
[ ((modMask, xK_p), spawn "dmenu_run")
|
| 28 | 29 |
]
|
| 29 | 30 |
|
| 30 | |
myLayout = avoidStruts (myTabbed ||| tiled ||| Mirror tiled) ||| Full
|
| 31 |
myLayout = avoidStruts (myTabbed ||| tiled ||| Mirror tiled) ||| noBorders (smartBorders Full)
|
| 31 | 32 |
where tiled = Tall nmaster delta ratio
|
| 32 | 33 |
nmaster = 1
|
| 33 | 34 |
ratio = 1/2
|
|
| 66 | 67 |
when fehBgExists $
|
| 67 | 68 |
void (createProcess (proc "sh" ["/home/gdritter/.xm-init"]))
|
| 68 | 69 |
xmproc <- spawnPipe "xmobar /home/gdritter/.xmobarrc"
|
| 70 |
void (spawnPipe "runsvdir /home/gdritter/.run/service")
|
| 69 | 71 |
xmonad $ defaultConfig
|
| 70 | 72 |
{ modMask = mod4Mask
|
| 71 | 73 |
, terminal = "urxvt -e tmux"
|