12 lines
344 B
EmacsLisp
12 lines
344 B
EmacsLisp
;;; misc.el --- various useful stuff -*- lexical-binding: t -*-
|
|
;;; Commentary:
|
|
|
|
;; stuff related to window manager
|
|
(use-package i3wm-config-mode
|
|
:config
|
|
(add-to-list 'auto-mode-alist '("/sway/.*config.*/" . i3wm-config-mode))
|
|
(add-to-list 'auto-mode-alist '("/sway/config\\'" . i3wm-config-mode)))
|
|
|
|
(provide 'misc)
|
|
;;; misc.el ends here
|