From dc8eb0c8f0b842503da51a73dec2a7d9487f3047 Mon Sep 17 00:00:00 2001
From: Chizi123 <joelgrun@gmail.com>
Date: Sat, 18 May 2019 13:22:03 +0000
Subject: [PATCH] removed EXWM experiment and made verilog mode relative path
---
init.el | 10 ++++++----
config.org | 13 +------------
2 files changed, 7 insertions(+), 16 deletions(-)
diff --git a/config.org b/config.org
index 98ef5ac..3d6c283 100644
--- a/config.org
+++ b/config.org
@@ -11,17 +11,6 @@
(setenv "PATH" (mapconcat #'identity exec-path path-separator)))
#+END_SRC
-* EXWM for emacs machines
-This is for machines I just want to use to run emacs.
-#+BEGIN_SRC emacs-lisp
- (when (eq system-type 'linux)
- (use-package exwm
- :ensure t
- :config
- (require 'exwm-config)
- (exwm-config-default)))
-#+END_SRC
-
* Aesthetic changes
** Emacs theme
Zenburn theme is the default
@@ -818,7 +807,7 @@
#+BEGIN_SRC emacs-lisp
(defun get-verilog-latest()
(interactive)
- (url-copy-file "https://www.veripool.org/ftp/verilog-mode.el" "c:/Users/joelg/.emacs.d/elpa/verilog-mode/verilog-mode.el" 1))
+ (url-copy-file "https://www.veripool.org/ftp/verilog-mode.el" "~/.emacs.d/elpa/verilog-mode/verilog-mode.el" 1))
#+END_SRC
**** Integrate into emacs
diff --git a/init.el b/init.el
index 5265586..21c4e68 100644
--- a/init.el
+++ b/init.el
@@ -35,17 +35,19 @@
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
'(custom-safe-themes
- '("6b2636879127bf6124ce541b1b2824800afc49c6ccd65439d6eb987dbf200c36" default))
- '(ede-project-directories '("c:/Users/joelg/.emacs.d"))
+ (quote
+ ("6b2636879127bf6124ce541b1b2824800afc49c6ccd65439d6eb987dbf200c36" default)))
+ '(ede-project-directories (quote ("c:/Users/joelg/.emacs.d")))
'(line-number-mode nil)
'(package-selected-packages
- '(org elscreen doom-themes csv-mode magit minesweeper speed-type spray fireplace powershell company-auctex company-bibtex company-irony-c-headers company-reftex gnuplot-mode gnuplot matlab-mode diminish keyfreq zenburn-theme yasnippet x86-lookup workgroups2 which-key volatile-highlights use-package undo-tree srefactor smartparens racket-mode popwin plantuml-mode pdf-tools org-bullets nyan-mode latex-preview-pane helm-projectile ggtags flycheck-pos-tip flycheck-clang-analyzer company-math company-c-headers clean-aindent-mode auto-package-update)))
+ (quote
+ (org elscreen doom-themes csv-mode magit minesweeper speed-type spray fireplace powershell company-auctex company-bibtex company-irony-c-headers company-reftex gnuplot-mode gnuplot matlab-mode diminish keyfreq zenburn-theme yasnippet x86-lookup workgroups2 which-key volatile-highlights use-package undo-tree srefactor smartparens racket-mode popwin plantuml-mode pdf-tools org-bullets nyan-mode latex-preview-pane helm-projectile ggtags flycheck-pos-tip flycheck-clang-analyzer company-math company-c-headers clean-aindent-mode auto-package-update))))
(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.
- )
+ '(default ((t (:foreground "#DCDCCC" :background "#3F3F3F")))))
(put 'narrow-to-page 'disabled nil)
(put 'narrow-to-region 'disabled nil)
(put 'list-timers 'disabled nil)
--
Gitblit v1.10.0