about summary refs log tree commit diff
path: root/configs
diff options
context:
space:
mode:
authorWilliam Carroll <wpcarro@gmail.com>2017-01-17T22·50-0500
committerWilliam Carroll <wpcarro@gmail.com>2017-01-17T22·50-0500
commit3958a7c10da9d6df21822419ca48ab9e6593e6b1 (patch)
tree63997d62966d7b5adc6cd024ed39aa3abdd6f9e8 /configs
parent461824752c7b78e7f8cd5344146f70c3d688ec31 (diff)
Updates Tmux kbds; adds Emacs modes; updates zsh kbds
Diffstat (limited to 'configs')
-rw-r--r--configs/.emacs8
-rw-r--r--configs/.tmux.conf6
-rw-r--r--configs/.zsh_profile4
3 files changed, 10 insertions, 8 deletions
diff --git a/configs/.emacs b/configs/.emacs
index 5e5faaf10991..6588bad15eda 100644
--- a/configs/.emacs
+++ b/configs/.emacs
@@ -20,14 +20,14 @@
  '(command-log-mode-window-size 50)
  '(custom-safe-themes
    (quote
-    ("6254372d3ffe543979f21c4a4179cd819b808e5dd0f1787e2a2a647f5759c1d1" "8ec2e01474ad56ee33bc0534bdbe7842eea74dccfb576e09f99ef89a705f5501" "5b24babd20e58465e070a8d7850ec573fe30aca66c8383a62a5e7a3588db830b" "eb0a314ac9f75a2bf6ed53563b5d28b563eeba938f8433f6d1db781a47da1366" "3d47d88c86c30150c9a993cc14c808c769dad2d4e9d0388a24fee1fbf61f0971" default)))
+    ("9d91458c4ad7c74cf946bd97ad085c0f6a40c370ac0a1cbeb2e3879f15b40553" "6254372d3ffe543979f21c4a4179cd819b808e5dd0f1787e2a2a647f5759c1d1" "8ec2e01474ad56ee33bc0534bdbe7842eea74dccfb576e09f99ef89a705f5501" "5b24babd20e58465e070a8d7850ec573fe30aca66c8383a62a5e7a3588db830b" "eb0a314ac9f75a2bf6ed53563b5d28b563eeba938f8433f6d1db781a47da1366" "3d47d88c86c30150c9a993cc14c808c769dad2d4e9d0388a24fee1fbf61f0971" default)))
  '(evil-shift-width 2)
  '(mouse-wheel-mode nil)
  '(neo-window-fixed-size nil)
  '(neo-window-width 35)
  '(package-selected-packages
    (quote
-    (evil-surround erlang elixir-mode golden-ratio flycheck-credo flycheck command-log-mode atom-one-dark-theme exec-path-from-shell clues-theme gotham-theme dracula-theme zenburn-theme fill-column-indicator neotree evil helm-swoop iedit vimrc-mode helm-ispell transpose-frame helm-projectile helm-ack nyan-mode alchemist helm magit dockerfile-mode elm-mode ack)))
+    (typescript-mode evil-surround erlang elixir-mode golden-ratio flycheck-credo flycheck command-log-mode atom-one-dark-theme exec-path-from-shell clues-theme gotham-theme dracula-theme zenburn-theme fill-column-indicator neotree evil helm-swoop iedit vimrc-mode helm-ispell transpose-frame helm-projectile helm-ack nyan-mode alchemist helm magit dockerfile-mode elm-mode ack)))
  '(popwin-mode t)
  '(popwin:popup-window-height 25)
  '(tool-bar-mode nil))
@@ -313,5 +313,5 @@ when in Vim's `insert` mode, favoring native Emacs bindings instead."
 (add-hook 'prog-mode-hook 'bootstrap-evil-mode)
 
 ;; Add transparency
-(set-frame-parameter (selected-frame) 'alpha '(90 . 90))
-(add-to-list 'default-frame-alist '(alpha . (90 . 90)))
+(set-frame-parameter (selected-frame) 'alpha '(95 . 95))
+(add-to-list 'default-frame-alist '(alpha . (95 . 95)))
diff --git a/configs/.tmux.conf b/configs/.tmux.conf
index fcc477774562..d8d3a6596313 100644
--- a/configs/.tmux.conf
+++ b/configs/.tmux.conf
@@ -1,7 +1,7 @@
 # change tmux leader
-# unbind C-b
-# set -g prefix C-a
-# bind C-a send-prefix
+unbind C-b
+set -g prefix C-q
+bind C-q send-prefix
 
 
 # COLORS!
diff --git a/configs/.zsh_profile b/configs/.zsh_profile
index c6d3f53bbddc..331b4b5f81c8 100644
--- a/configs/.zsh_profile
+++ b/configs/.zsh_profile
@@ -10,7 +10,9 @@ echo "Welcome back, $USER"
 df -hl
 
 # use vi bindings for terminal input
-set -o vi
+# set -o vi
+# use emacs bindings (default) for terminal input
+set -o emacs
 
 # aliases
 source $HOME/pc_settings/aliases.sh