Browse Source

Switch to nord theme - no screenshot yet until it looks better and is dogfooded.

master
Taylor Bockman 2 years ago
parent
commit
94665e2e3e
  1. 2
      elisp/custom.el
  2. 15
      elisp/ui.el
  3. 3
      init.el

2
elisp/custom.el

@ -4,7 +4,7 @@
;; 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.
'(package-selected-packages '(package-selected-packages
'(rainbow-delimiters python-pytest json-mode company-jedi jedi hl-defined counsel rainbow-identifiers exwm-config all-the-icons-ibuffer slime ivy zerodark-theme zerodark neotree all-the-icons paredit flycheck aggressive-indent aggressive-indent-mode lsp-python-ms py-autopep8 pyenv-mode elpy lsp-ui use-package))) '(nord-theme powerline rainbow-delimiters python-pytest json-mode company-jedi jedi hl-defined counsel rainbow-identifiers exwm-config all-the-icons-ibuffer slime ivy zerodark-theme zerodark neotree all-the-icons paredit flycheck aggressive-indent aggressive-indent-mode lsp-python-ms py-autopep8 pyenv-mode elpy lsp-ui use-package)))
(custom-set-faces (custom-set-faces
;; custom-set-faces was added by Custom. ;; custom-set-faces was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful. ;; If you edit it by hand, you could mess it up, so be careful.

15
elisp/ui.el

@ -51,16 +51,18 @@
:demand t :demand t
:commands neotree-toggle :commands neotree-toggle
:init (setq neo-theme (if (display-graphic-p) 'icons 'arrow)) :init (setq neo-theme (if (display-graphic-p) 'icons 'arrow))
:config
(setq neo-window-fixed-size nil)
:bind ("C-`" . neotree-toggle) :bind ("C-`" . neotree-toggle)
:requires all-the-icons) :requires all-the-icons)
;; Theme ;; Theme
(use-package zerodark-theme (use-package nord-theme
:ensure t :ensure t
:requires all-the-icons :requires all-the-icons
:config :config
(load-theme 'zerodark t) (setq nord-uniform-mode-lines t)
(zerodark-setup-modeline-format)) (load-theme 'nord t))
;; Buffer configuration ;; Buffer configuration
(use-package all-the-icons-ibuffer (use-package all-the-icons-ibuffer
@ -69,6 +71,13 @@
:requires all-the-icons) :requires all-the-icons)
;; Modeline configuration ;; Modeline configuration
(use-package powerline
:ensure t
:init
(powerline-center-theme)
:custom
(powerline-gui-use-vcs-glyph t))
(display-battery-mode 1) (display-battery-mode 1)
(display-time-mode 1) (display-time-mode 1)
(column-number-mode 1) (column-number-mode 1)

3
init.el

@ -1,8 +1,11 @@
(require 'package) (require 'package)
(add-to-list 'package-archives '("melpa" . "https://melpa.org/packages/") t) (add-to-list 'package-archives '("melpa" . "https://melpa.org/packages/") t)
;; Comment/uncomment this line to enable MELPA Stable if desired. See `package-archive-priorities` ;; Comment/uncomment this line to enable MELPA Stable if desired. See `package-archive-priorities`
;; and `package-pinned-packages`. Most users will not need or want to do this. ;; and `package-pinned-packages`. Most users will not need or want to do this.
;;(add-to-list 'package-archives '("melpa-stable" . "https://stable.melpa.org/packages/") t) ;;(add-to-list 'package-archives '("melpa-stable" . "https://stable.melpa.org/packages/") t)
(package-initialize) (package-initialize)
;; Disable startup noise ;; Disable startup noise

Loading…
Cancel
Save