Init repo; Add nord theme;
This commit is contained in:
parent
af0882ba87
commit
342d43d96e
4 changed files with 22 additions and 0 deletions
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
||||||
|
*~
|
3
.gitmodules
vendored
Normal file
3
.gitmodules
vendored
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
[submodule "bundle/nord-theme"]
|
||||||
|
path = bundle/nord-theme
|
||||||
|
url = https://github.com/arcticicestudio/nord-emacs.git
|
1
bundle/nord-theme
Submodule
1
bundle/nord-theme
Submodule
|
@ -0,0 +1 @@
|
||||||
|
Subproject commit c4e0b5548e2f3a149658617b33813cb115bdecfe
|
17
init.el
Normal file
17
init.el
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
(add-to-list 'custom-theme-load-path (expand-file-name "~/.emacs.d/bundle/nord-theme/"))
|
||||||
|
(load-theme 'nord t)
|
||||||
|
(menu-bar-mode -1)
|
||||||
|
(custom-set-variables
|
||||||
|
;; custom-set-variables was added by Custom.
|
||||||
|
;; If you edit it by hand, you could mess it up, so be careful.
|
||||||
|
;; Your init file should contain only one such instance.
|
||||||
|
;; If there is more than one, they won't work right.
|
||||||
|
'(custom-safe-themes
|
||||||
|
(quote
|
||||||
|
("4515feff287a98863b7b7f762197a78a7c2bfb6ec93879e7284dff184419268c" default))))
|
||||||
|
(custom-set-faces
|
||||||
|
;; custom-set-faces was added by Custom.
|
||||||
|
;; If you edit it by hand, you could mess it up, so be careful.
|
||||||
|
;; Your init file should contain only one such instance.
|
||||||
|
;; If there is more than one, they won't work right.
|
||||||
|
)
|
Loading…
Add table
Reference in a new issue