Browse Source

continue working on configuration

master
Brett Langdon 7 years ago
parent
commit
53e2c5719b
No known key found for this signature in database GPG Key ID: B664881177781B04
3 changed files with 22 additions and 3 deletions
  1. +16
    -3
      emacs.d/core.el
  2. +3
    -0
      emacs.d/packages.el
  3. +3
    -0
      emacs.d/theme.el

+ 16
- 3
emacs.d/core.el View File

@ -39,9 +39,22 @@
;; Subword mode
(global-subword-mode)
;; Enable global line numbers
(global-linum-mode t)
;; Save place in file
(save-place-mode 1)
;; Save history
(setq savehist-additional-variables '(mark-ring
global-mark-ring
search-ring
regexp-search-ring
extended-command-history)
savehist-autosave-interval 60
enable-recursive-minibuffers t
history-length 1000)
(savehist-mode 1)
;; smart tab behavior - indent or complete
(setq tab-always-indent 'complete)
;; Custom functions
;; DEV: Load this last


+ 3
- 0
emacs.d/packages.el View File

@ -13,6 +13,9 @@
:diminish helm-mode
:bind (("M-x" . helm-M-x)
("C-x C-f" . helm-find-files))
:init
(setq helm-move-to-line-cycle-in-source t
helm-M-x-always-save-history t)
:config
(use-package helm-ag)
(helm-mode 1))


+ 3
- 0
emacs.d/theme.el View File

@ -1,3 +1,6 @@
(use-package monokai-theme
:config
(load-theme 'monokai t))
;; Enable global line numbers
(global-linum-mode t)

Loading…
Cancel
Save