Skip to content

Commit

Permalink
More spring cleaning
Browse files Browse the repository at this point in the history
  • Loading branch information
packrat386 committed Feb 22, 2021
1 parent f27b432 commit ef777af
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 14 deletions.
4 changes: 2 additions & 2 deletions bashrc
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ if [ -f /usr/local/opt/chruby/share/chruby/chruby.sh ]; then
fi

# Linux
if [ -f /usr/share/chruby/chruby.sh ]; then
source /usr/share/chruby/chruby.sh
if [ -f /usr/local/share/chruby/chruby.sh ]; then
source /usr/local/share/chruby/chruby.sh
fi

# It's go time
Expand Down
13 changes: 2 additions & 11 deletions emacs
Original file line number Diff line number Diff line change
Expand Up @@ -38,18 +38,9 @@
;;------------------------------------------------------------------------------
;; Ruby Stuff
;;------------------------------------------------------------------------------
(use-package enh-ruby-mode
(use-package ruby-mode
:ensure t
:mode "\\.rb$"
:interpreter "ruby"
:config (setq enh-ruby-deep-arglist nil
enh-ruby-deep-indent-paren nil
enh-ruby-deep-indent-paren-style nil
enh-ruby-add-encoding-comment-on-save nil
enh-ruby-program "/usr/bin/ruby")
:bind (:map enh-ruby-mode-map
("M-3" . rubocop-check-current-file)
("M-#" . rubocop-check-project)))
:mode "\\.rb$")
(use-package rubocop :ensure t)
(use-package rspec-mode :ensure t)
(use-package yaml-mode :ensure t)
Expand Down
4 changes: 3 additions & 1 deletion gitconfig
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,6 @@
name = Aidan Coyle
email = [email protected]
[core]
excludesfile = ~/.gitignore
excludesfile = ~/.gitignore
[init]
defaultBranch = main

0 comments on commit ef777af

Please sign in to comment.