Lint a little bit of emacs configuration
This commit is contained in:
parent
112a8589d4
commit
de14b2942e
1 changed files with 9 additions and 4 deletions
11
debian/home/.emacs
vendored
11
debian/home/.emacs
vendored
|
@ -1,6 +1,6 @@
|
||||||
;;; package --- Rawley Linux .emacs
|
;;; package --- Rawley's Linux .emacs
|
||||||
;;; Commentary:
|
;;; Commentary:
|
||||||
;;; This is my Emacs init.el for Linx. This is used on a Artix Linux machine
|
;;; This is my Emacs init.el for Linx. This is used on a Artix Linux machine
|
||||||
;;; and a Debian Linux machine.
|
;;; and a Debian Linux machine.
|
||||||
;;; Code:
|
;;; Code:
|
||||||
(add-to-list 'default-frame-alist '(font . "monospace-14"))
|
(add-to-list 'default-frame-alist '(font . "monospace-14"))
|
||||||
|
@ -42,7 +42,9 @@
|
||||||
;; Packages
|
;; Packages
|
||||||
(require 'use-package)
|
(require 'use-package)
|
||||||
(use-package dumb-jump)
|
(use-package dumb-jump)
|
||||||
(use-package fly-check)
|
(use-package flycheck
|
||||||
|
:ensure t
|
||||||
|
:init (global-flycheck-mode))
|
||||||
(use-package haml-mode)
|
(use-package haml-mode)
|
||||||
(use-package smex
|
(use-package smex
|
||||||
:config
|
:config
|
||||||
|
@ -91,3 +93,6 @@
|
||||||
;; Your init file should contain only one such instance.
|
;; Your init file should contain only one such instance.
|
||||||
;; If there is more than one, they won't work right.
|
;; If there is more than one, they won't work right.
|
||||||
)
|
)
|
||||||
|
|
||||||
|
(provide '.emacs)
|
||||||
|
;;; .emacs ends here
|
||||||
|
|
Loading…
Reference in a new issue