Skip to content

daviderestivo/smart-mode-line-atom-one-dark-theme

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

smart-mode-line-atom-one-dark-theme

License: GPL v3 MELPA

Description

An atom-one-dark theme for smart-mode-line.

Screenshots

Active

Smart Modeline Atom One Dark Theme: Active

Inactive

Smart Modeline Atom One Dark Theme: Inactive

Installation

Manual

smart-mode-line is available on Melpa. Please refer to the official doc for the installation steps.

Download smart-mode-line-atom-one-dark-theme.el and copy it into your .emacs.d theme folder:

mkdir ~/.emacs.d/themes

Add the following elisp snippet into init.el:

;; Tell Emacs where is your personal theme directory
(add-to-list 'custom-theme-load-path (expand-file-name "themes"
                                                       user-emacs-directory))
(require 'smart-mode-line)
(setq sml/theme 'atom-one-dark)
(sml/setup)

If you are using use-package, please use the below elisp snippet:

;; Tell Emacs where is your personal theme directory
(add-to-list 'custom-theme-load-path (expand-file-name "themes"
                                                       user-emacs-directory))
(use-package smart-mode-line
  :config
  (setq sml/theme 'atom-one-dark)
  (sml/setup))

Melpa

Smart-mode-line-atom-one-dark is available on Melpa, you can install it using:

;; An atom-one-dark theme for smart-mode-line
(use-package smart-mode-line-atom-one-dark-theme
  :ensure t)

;; smart-mode-line
(use-package smart-mode-line
  :config
  (setq sml/theme 'atom-one-dark)
  (sml/setup))

Releases

No releases published

Packages

No packages published