Taylor Bockman 5 years ago
parent
commit
61ec1f5837
  1. 9
      arch-configs/fresh_install.sh
  2. 9
      dotfiles/emacs.d/init.el
  3. 8
      dotfiles/emacs.d/package.el

9
arch-configs/fresh_install.sh

@ -17,10 +17,11 @@ sudo pacman -Syyu
# Packages - Add stuff you want installed here
#
PACKAGES=( "yay" # Better package manager \
"inconsolata-ttf" # Inconsolata font \
"zsh" # Beats bash \
"emacs" \
PACKAGES=( "yay" # Better package manager \
"inconsolata-ttf" # Inconsolata font \
"irssi" # Simply the best IRC client \
"zsh" # Beats bash \
"emacs" \
)
# Put AUR packages here

9
dotfiles/emacs.d/init.el

@ -418,10 +418,6 @@
(global-set-key (kbd "C-x C-f") nil)
(global-set-key (kbd "C-c r") nil)
(global-set-key (kbd "C-c n") nil)
(global-set-key (kbd "C-h C-k") nil)
;; Pane navigation
@ -455,10 +451,7 @@
(global-set-key (kbd "C-x C-b") 'ibuffer)
;; Line number toggle
(global-set-key (kbd "C-c n") 'linum-mode)
;; Relative line numbering
(global-set-key (kbd "C-c r") 'linum-relative-toggle)
(global-set-key [f9] 'linum-mode)
;; Expand region
(global-set-key (kbd "C-h C-k") 'er/expand-region)

8
dotfiles/emacs.d/package.el

@ -5,12 +5,18 @@
company
company-irony
company-emacs-eclim
;; We don't need the `jedi` package
;; since we are using company. If we
;; include both we get an annoying
;; *Python Completions* buffer that
;; isn't useful to us.
company-jedi
eclim
irony
counsel
swiper
jedi
;;;;;;;;;;;;;;;;;;;;;;;;
;; Programming modes

Loading…
Cancel
Save