Rethink config/default & keybindings
+ Added +smartparens flag to config/default for default smartparens config. + Fixed +tng support for completion/company. + Removed super keybinds (for all but MacOS) + Moved "keybind fixes" to config/default/config.el (these should be universally available). + Replaced both +default-repeat-forward-key and +default-repeat-backward-key with +default-repeat-keys. If this variable is nil, the universal repeat motions won't be bound.
This commit is contained in:
parent
f9b72545b7
commit
9f2dff02fa
5 changed files with 276 additions and 259 deletions
|
@ -35,9 +35,12 @@
|
|||
:config
|
||||
(add-to-list 'company-frontends 'company-tng-frontend)
|
||||
(define-key! company-active-map
|
||||
[return] nil
|
||||
[tab] #'company-select-next
|
||||
[backtab] #'company-select-previous))
|
||||
"RET" nil
|
||||
[return] nil
|
||||
"TAB" #'company-select-next
|
||||
[tab] #'company-select-next
|
||||
"<backtab>" #'company-select-previous
|
||||
[backtab] #'company-select-previous))
|
||||
|
||||
|
||||
;;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue