mirror of
https://github.com/SqrtMinusOne/dotfiles.git
synced 2025-12-10 11:13:04 +03:00
9 lines
298 B
EmacsLisp
9 lines
298 B
EmacsLisp
;;; -*- lexical-binding: t -*-
|
|
(when (and my/is-termux (not (equal (my/system-name) "snow")))
|
|
(define-key key-translation-map (kbd "`") (kbd "<escape>"))
|
|
(define-key key-translation-map (kbd "<escape>") (kbd "`")))
|
|
|
|
(when my/is-termux
|
|
(setq split-width-threshold 90))
|
|
|
|
(provide 'sqrt-termux)
|