summaryrefslogtreecommitdiff
path: root/lisp/term/st.el
blob: 3a15576ecc63aad8d6e28ec2c42a8a26b62eb225 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
;;; st.el --- terminal initialization for st  -*- lexical-binding:t -*-
;; Copyright (C) 2020 Free Software Foundation, Inc.

(require 'term/xterm)

(defun terminal-init-st ()
  "Terminal initialization function for st."
  (tty-run-terminal-initialization (selected-frame) "xterm"))

(provide 'term/st)

;; st.el ends here