summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xbin/kj-setup.sh1
-rw-r--r--spacemacs8
-rw-r--r--xmonad/xmonad.hs4
-rw-r--r--zshenv2
4 files changed, 6 insertions, 9 deletions
diff --git a/bin/kj-setup.sh b/bin/kj-setup.sh
index 3999f23..12e537e 100755
--- a/bin/kj-setup.sh
+++ b/bin/kj-setup.sh
@@ -64,6 +64,7 @@ done
# done
# create_symlink dotfiles/zshrc .zshrc
+create_symlink dotfiles/zshenv .zshenv
mkdir -p .ssh
create_symlink ../dotfiles/ssh/config .ssh/config
diff --git a/spacemacs b/spacemacs
index ae3ec9d..4601624 100644
--- a/spacemacs
+++ b/spacemacs
@@ -17,7 +17,7 @@ values."
;; List of configuration layers to load. If it is the symbol `all' instead
;; of a list then all discovered layers will be installed.
dotspacemacs-configuration-layers
- '(
+ '(sql
csv
finance
;; ----------------------------------------------------------------
@@ -326,12 +326,6 @@ layers configuration. You are free to put any user code."
(setq magit-last-seen-setup-instructions "1.4.0")
(add-to-list 'spacemacs-indent-sensitive-modes 'nix-mode)
(setq dns-mode-soa-auto-increment-serial nil)
- (add-to-list 'org-structure-template-alist
- `("r" ,(string-join '("** Untitled Run"
- " :PROPERTIES:"
- " :dist: "
- " :date: %t"
- " :END:") "\n")))
(setq
ledger-binary-path "hledger"
ledger-post-amount-alignment-column 50)
diff --git a/xmonad/xmonad.hs b/xmonad/xmonad.hs
index 3cd577d..3127c5f 100644
--- a/xmonad/xmonad.hs
+++ b/xmonad/xmonad.hs
@@ -40,7 +40,7 @@ myConfig host =
, borderWidth = 2
, focusedBorderColor = "#ff0000"
, normalBorderColor = "#777778"
- , workspaces = pure <$> "\"<>PYFAOEU"
+ , workspaces = pure <$> "\"<>PYFAOEUI"
, startupHook = do
setWMName "LG3D"
-- when (host == layoutScreensHost) (layoutScreens 2 (TwoPane 0.5 0.5))
@@ -131,7 +131,7 @@ myKeys conf@(XConfig {XMonad.modMask = modm}) = M.fromList $
-- , ((modm , xK_q ), spawn "xmonad --recompile; xmonad --restart")
-- Lock screen
- , ((modm .|. shiftMask, xK_z), spawn "xscreensaver-command -lock")
+ , ((modm .|. shiftMask, xK_z), spawn "mate-screensaver-command --lock")
]
++
diff --git a/zshenv b/zshenv
new file mode 100644
index 0000000..491b49e
--- /dev/null
+++ b/zshenv
@@ -0,0 +1,2 @@
+EDITOR=nvim
+PATH=$PATH:$HOME/bin