diff --git a/common/npmrc b/common/npmrc index 97aa418..a49e127 100644 --- a/common/npmrc +++ b/common/npmrc @@ -1,14 +1 @@ -# $DOTFILES/common/npmrc -# Date: 2024-12-22 -# Author: js0ny - -# Location: -# $NPM_CONFIG_USERCONFIG -# ~/.npmrc (Default location) -# Linking: -# export NPM_CONFIG_USERCONFIG="$XDG_CONFIG_HOME"/npm/npmrc -# ln -s $DOTFILES/.config/npm/npmrc $NPM_CONFIG_USERCONFIG -# New-Item -ItemType SymbolicLink -Path $env:NPM_CONFIG_USERCONFIG -Value $env:DOTFILES/.config/npm/npmrc - - -# registry=https://registry.npmmirror.com +strict-ssl=false diff --git a/platforms/mac/DefaultKeyBinding.dict b/platforms/mac/DefaultKeyBinding.dict index eceab87..32605a9 100644 --- a/platforms/mac/DefaultKeyBinding.dict +++ b/platforms/mac/DefaultKeyBinding.dict @@ -1,11 +1,29 @@ // ~/Library/Keybindings/DefaultKeyBinding.dict { - // Colemak Vim Style Arrows - "^h" = "moveBackward:"; - "^n" = "moveDown:"; - "^e" = "moveUp:"; - "^i" = "moveForward:"; - // Colemak Vim Style Home/End, Insert & Append - "^l" = "moveToBeginningOfLine:"; - "^a" = "moveToEndOfLine:"; + "~a" = (); + "~b" = (); + "~c" = (); + "~d" = (); + "~e" = (); + "~f" = (); + "~g" = (); + "~h" = (); + "~i" = (); + "~j" = (); + "~k" = (); + "~l" = (); + "~m" = (); + "~n" = (); + "~o" = (); + "~p" = (); + "~q" = (); + "~r" = (); + "~s" = (); + "~t" = (); + "~u" = (); + "~v" = (); + "~w" = (); + "~x" = (); + "~y" = (); + "~z" = (); } diff --git a/tools/emacs.d/lisp/init-evil.el b/tools/emacs.d/lisp/init-evil.el index af3cc5f..5badba3 100644 --- a/tools/emacs.d/lisp/init-evil.el +++ b/tools/emacs.d/lisp/init-evil.el @@ -53,4 +53,16 @@ (global-evil-surround-mode 1)) +;; Evil-goggles: Highlight-yank (and more) +(use-package evil-goggles + :ensure t + :config + (evil-goggles-mode) + + ;; optionally use diff-mode's faces; as a result, deleted text + ;; will be highlighed with `diff-removed` face which is typically + ;; some red color (as defined by the color theme) + ;; other faces such as `diff-added` will be used for other actions + (evil-goggles-use-diff-faces)) + (provide 'init-evil)