Skip to content

Commit 205c771

Browse files
committedApr 26, 2019
Add minor shell and editor changes
* Use a blinking cursor in hyper * Add spotify layer to Spacemacs * Add ability to edit CLI commands in Vim
1 parent dc6948a commit 205c771

File tree

3 files changed

+9
-4
lines changed

3 files changed

+9
-4
lines changed
 

‎configs/.hyper.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ module.exports = {
3636
cursorShape: 'BLOCK',
3737

3838
// set to `true` (without backticks and without quotes) for blinking cursor
39-
cursorBlink: false,
39+
cursorBlink: true,
4040

4141
// color of the text
4242
foregroundColor: '#fff',

‎spacemacs/.spacemacs

+3-2
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,8 @@ values."
7575
themes-megapack
7676

7777
;; other
78-
restclient)
78+
restclient
79+
spotify)
7980

8081
;; List of additional packages that will be installed without being
8182
;; wrapped in a layer. If you need some configuration for these
@@ -161,7 +162,7 @@ values."
161162
dotspacemacs-colorize-cursor-according-to-state t
162163
;; Default font, or prioritized list of fonts. `powerline-scale' allows to
163164
;; quickly tweak the mode-line size to make separators look not too crappy.
164-
dotspacemacs-default-font '("Source Code Pro"
165+
dotspacemacs-default-font '("Fira Code"
165166
:size 13.0
166167
:weight normal
167168
:width normal

‎zsh/.zshrc

+5-1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,10 @@ export WORDCHARS='*?_~=&;!#$%^(){}<>='
1313
# Set bat theme
1414
export BAT_THEME='Monokai Extended Origin'
1515

16+
# Modules to load
17+
autoload -z edit-command-line
18+
zle -N edit-command-line
19+
1620

1721
# ------------------------------------------------
1822
# Plugins
@@ -66,7 +70,7 @@ zplug load
6670
# bind P and N for Emacs mode
6771
bindkey -M emacs '^P' history-substring-search-up
6872
bindkey -M emacs '^N' history-substring-search-down
69-
73+
bindkey -M emacs '^X^E' edit-command-line
7074

7175
# ------------------------------------------------
7276
# Options

0 commit comments

Comments
 (0)
Please sign in to comment.