Browse Source

irssi

master
Taylor Bockman 5 years ago
parent
commit
f91aec3636
  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 - Add stuff you want installed here
# #
PACKAGES=( "yay" # Better package manager \ PACKAGES=( "yay" # Better package manager \
"inconsolata-ttf" # Inconsolata font \ "inconsolata-ttf" # Inconsolata font \
"zsh" # Beats bash \ "irssi" # Simply the best IRC client \
"emacs" \ "zsh" # Beats bash \
"emacs" \
) )
# Put AUR packages here # 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-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) (global-set-key (kbd "C-h C-k") nil)
;; Pane navigation ;; Pane navigation
@ -455,10 +451,7 @@
(global-set-key (kbd "C-x C-b") 'ibuffer) (global-set-key (kbd "C-x C-b") 'ibuffer)
;; Line number toggle ;; Line number toggle
(global-set-key (kbd "C-c n") 'linum-mode) (global-set-key [f9] 'linum-mode)
;; Relative line numbering
(global-set-key (kbd "C-c r") 'linum-relative-toggle)
;; Expand region ;; Expand region
(global-set-key (kbd "C-h C-k") 'er/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
company-irony company-irony
company-emacs-eclim 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 company-jedi
eclim eclim
irony irony
counsel counsel
swiper swiper
jedi
;;;;;;;;;;;;;;;;;;;;;;;; ;;;;;;;;;;;;;;;;;;;;;;;;
;; Programming modes ;; Programming modes

Loading…
Cancel
Save