Browse Source

some emacs stuff

Taylor Bockman 4 years ago
parent
commit
130e25f8ca
  1. 7
      dotfiles/emacs.d/init.el
  2. 6
      dotfiles/emacs.d/package.el

7
dotfiles/emacs.d/init.el

@ -143,6 +143,8 @@ There are two things you can do about this warning:
;; Default modes ;; Default modes
;;-------------------------------------------------------------------------------------- ;;--------------------------------------------------------------------------------------
(require 'use-package)
(ivy-mode 1) (ivy-mode 1)
;; Enable column numbers ;; Enable column numbers
@ -183,6 +185,11 @@ There are two things you can do about this warning:
;; Enable semantic for language-aware editing commands ;; Enable semantic for language-aware editing commands
(setq semantic-mode 't) (setq semantic-mode 't)
;; For Python enable Elpy.
(use-package elpy
:ensure t
:init (elpy-enable))
;;-------------------------------------------------------------------------------------- ;;--------------------------------------------------------------------------------------
;; Save hooks ;; Save hooks
;;-------------------------------------------------------------------------------------- ;;--------------------------------------------------------------------------------------

6
dotfiles/emacs.d/package.el

@ -32,7 +32,7 @@
nasm-mode nasm-mode
paredit paredit
protobuf-mode protobuf-mode
python-mode elpy
yaml-mode yaml-mode
slime slime
;;;;;;;;;;;;;;;;;;;; ;;;;;;;;;;;;;;;;;;;;
@ -74,6 +74,10 @@
counsel-gtags counsel-gtags
rtags rtags
company-rtags company-rtags
;;General
use-package
;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
) )

Loading…
Cancel
Save