From 18bb5178ea2d2d1f2f0e788ab33bfbdf59376837 Mon Sep 17 00:00:00 2001 From: tslil clingman <> Date: Fri, 24 Apr 2020 14:51:42 -0700 Subject: EXWM workspace fixes & tray, Verilog, still not good input method --- emacs/inits/20-programming.el | 19 +++++++++++++------ 1 file changed, 13 insertions(+), 6 deletions(-) (limited to 'emacs/inits/20-programming.el') diff --git a/emacs/inits/20-programming.el b/emacs/inits/20-programming.el index 18ba4b0..69d71b1 100644 --- a/emacs/inits/20-programming.el +++ b/emacs/inits/20-programming.el @@ -1,13 +1,13 @@ -;; Time-stamp: <2020-01-29 10:47:16 (tslil@bison)> +;; Time-stamp: <2020-04-24 14:51:05 (tslil@bison)> ;; ----------------------------------------------------------------------------- ;; General setup ;; Always split horizontally when compiling -(defadvice compile (around split-horizontally activate) - (let ((split-width-threshold 0) - (split-height-threshold nil)) - ad-do-it)) +;; (defadvice compile (around split-horizontally activate) +;; (let ((split-width-threshold 0) +;; (split-height-threshold nil)) +;; ad-do-it)) ;; Resize to fill column (and a little bit) (defadvice compile (after resize-window-properly activate) @@ -181,4 +181,11 @@ (use-package verilog-mode :ensure t - :defer t) + :defer t + :mode "\\.vl$" + :hook (verilog-mode . (lambda () + (setq verilog-tool 'verilog-compiler) + (verilog-set-compile-command))) + :config + (setq-default verilog-compiler "iverilog" + verilog-tool 'verilog-compiler)) -- cgit v1.2.3