Updates Tmux kbds; adds Emacs modes; updates zsh kbds
This commit is contained in:
parent
461824752c
commit
3958a7c10d
3 changed files with 10 additions and 8 deletions
|
@ -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)))
|
||||
|
|
|
@ -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!
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue