diff --git a/arch-configs/fresh_install.sh b/arch-configs/fresh_install.sh index 0d14b9b..de9be89 100755 --- a/arch-configs/fresh_install.sh +++ b/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 diff --git a/dotfiles/emacs.d/init.el b/dotfiles/emacs.d/init.el index 832d10b..28d32a3 100644 --- a/dotfiles/emacs.d/init.el +++ b/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) diff --git a/dotfiles/emacs.d/package.el b/dotfiles/emacs.d/package.el index 950d9ad..578c4b7 100644 --- a/dotfiles/emacs.d/package.el +++ b/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