Add feature-mode and cask
This commit is contained in:
parent
2acc51a800
commit
78191dc467
@ -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")))
|
||||
|
||||
)
|
||||
|
||||
|
@ -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.
|
||||
|
Reference in New Issue
Block a user