2019-10-03 02:46:44 +02:00
|
|
|
;;; st.el --- terminal initialization for st -*- lexical-binding:t -*-
|
2020-08-11 09:23:40 +02:00
|
|
|
|
2019-10-03 02:46:44 +02:00
|
|
|
;; Copyright (C) 2020 Free Software Foundation, Inc.
|
|
|
|
|
2020-08-11 09:23:40 +02:00
|
|
|
;;; Commentary:
|
|
|
|
|
|
|
|
;; Support for the st terminal emulator.
|
|
|
|
;; https://st.suckless.org/
|
|
|
|
|
|
|
|
;;; Code:
|
|
|
|
|
2019-10-03 02:46:44 +02:00
|
|
|
(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
|