Add programming module

This commit is contained in:
Wojciech Kozlowski 2017-08-28 18:45:11 +01:00
parent 85c71c0046
commit 494ac9260e
2 changed files with 37 additions and 0 deletions

View File

@ -108,6 +108,7 @@
emacs
helm
parentheses
programming
version-control
workflow))

36
modules/programming.el Normal file
View File

@ -0,0 +1,36 @@
;;; programming.el --- Module file for programming configuration.
;;
;; Copyright (C) 2017 Wojciech Kozlowski
;;
;; Author: Wojciech Kozlowski <wojciech.kozlowski@vivaldi.net>
;; Created: 25 Aug 2017
;;
;; This file is not part of GNU Emacs.
;;
;;; Commentary:
;;
;; This module sets up packages and configuration for editing source code in
;; all languages.
;;
;;; License: GPLv3
;;; Required packages:
(setq init-packages/programming-packages
'(yasnippet)
)
;; Configuration:
(defun init-packages/init-programming ()
;; --------------------------------------------------------------------------
;; Enable yasnippet.
;; --------------------------------------------------------------------------
(use-package yasnippet)
(yas-global-mode 1)
)