Add feature-mode and cask

This commit is contained in:
Wojciech Kozlowski 2019-05-01 14:45:23 +08:00
parent 2acc51a800
commit 78191dc467
2 changed files with 13 additions and 1 deletions

View File

@ -268,7 +268,8 @@
;; --------------------------------------------------------------------------
;; Add directories to exec-path.
;; --------------------------------------------------------------------------
(setq exec-path (append exec-path '("/home/wojtek/.local/bin")))
(setq exec-path (append exec-path '("/home/wojtek/.local/bin"
"/home/wojtek/.cask/bin")))
)

View File

@ -27,6 +27,7 @@
company-lsp
dockerfile-mode
elpy
feature-mode
fic-mode
function-args
flycheck
@ -174,6 +175,14 @@
;; Note that this package require autopep8 to be installed.
:bind (("C-c C-f" . py-autopep8-buffer)))
;; --------------------------------------------------------------------------
;; Configure feature mode for use with `ecukes' for Emacs package
;; development.
;; --------------------------------------------------------------------------
(use-package feature-mode
:defer t)
;; --------------------------------------------------------------------------
;; FIC mode.
;; --------------------------------------------------------------------------
@ -381,6 +390,8 @@
("C-c r" . recompile))
:config
(setq-default
;; Default compile commande
compile-command "make "
;; Just save before compiling.
compilation-ask-about-save nil
;; Just kill old compile processes before starting the new one.