summaryrefslogtreecommitdiff
path: root/emacs.d
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2021-04-13 08:13:57 +0300
committerLars Wirzenius <liw@liw.fi>2021-04-13 08:13:57 +0300
commitca0750b1e7de0ad96eecafa6a96beaad217f9198 (patch)
tree8cc5000ec920b7db9248b878e878e3f88552a0ba /emacs.d
parent281d2dca75e0019ea8fd8317dc751efa73c5b120 (diff)
parent2d6a990f278dba96c123cf9a728ba572a3aa4929 (diff)
downloadliw-dot-files-ca0750b1e7de0ad96eecafa6a96beaad217f9198.tar.gz
Merge branch 'master' of ssh://git.liw.fi/liw-dot-files
Diffstat (limited to 'emacs.d')
l---------emacs.d/emacs.d1
-rw-r--r--emacs.d/init.el3
-rw-r--r--emacs.d/tramp3
-rw-r--r--emacs.d/transient/history.el6
4 files changed, 13 insertions, 0 deletions
diff --git a/emacs.d/emacs.d b/emacs.d/emacs.d
new file mode 120000
index 0000000..4fd40fd
--- /dev/null
+++ b/emacs.d/emacs.d
@@ -0,0 +1 @@
+/home/liw/liw-dot-files/emacs.d \ No newline at end of file
diff --git a/emacs.d/init.el b/emacs.d/init.el
index 7433dec..3fa4739 100644
--- a/emacs.d/init.el
+++ b/emacs.d/init.el
@@ -160,6 +160,9 @@
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Other tweaks.
+;; Prevent Extraneous Tabs
+(setq-default indent-tabs-mode nil)
+
;; Do not make backup files when saving.
(setq make-backup-files nil)
diff --git a/emacs.d/tramp b/emacs.d/tramp
index 2901c71..ecdceb7 100644
--- a/emacs.d/tramp
+++ b/emacs.d/tramp
@@ -89,6 +89,9 @@
("/bin" "/usr/bin" "/sbin" "/usr/sbin" "/usr/local/bin" "/usr/local/sbin"))
("remote-shell" "/bin/sh")
("~" "/home/liw")
+ ("perl-file-spec" t)
+ ("perl-cwd-realpath" t)
+ ("perl" "\\perl")
("file-exists" "test -e")
("case-insensitive" nil)
("readlink" "\\readlink")
diff --git a/emacs.d/transient/history.el b/emacs.d/transient/history.el
new file mode 100644
index 0000000..ca42f0f
--- /dev/null
+++ b/emacs.d/transient/history.el
@@ -0,0 +1,6 @@
+((magit-branch nil)
+ (magit-commit nil)
+ (magit-pull nil)
+ (magit-push nil)
+ (magit-rebase
+ ("--interactive")))