diff --git a/.gitignore b/.gitignore new file mode 100644 index 00000000..b25c15b8 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +*~ diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 00000000..372ecab4 --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "bundle/nord-theme"] + path = bundle/nord-theme + url = https://github.com/arcticicestudio/nord-emacs.git diff --git a/bundle/nord-theme b/bundle/nord-theme new file mode 160000 index 00000000..c4e0b554 --- /dev/null +++ b/bundle/nord-theme @@ -0,0 +1 @@ +Subproject commit c4e0b5548e2f3a149658617b33813cb115bdecfe diff --git a/init.el b/init.el new file mode 100644 index 00000000..e58499f7 --- /dev/null +++ b/init.el @@ -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. + )