Skip to content

Commit

Permalink
added fuzzy find * requires gem
Browse files Browse the repository at this point in the history
  • Loading branch information
bastos committed Oct 23, 2008
1 parent 1577e80 commit 2befd15
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 5 deletions.
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,6 @@
[submodule "emacs-rails"]
path = emacs-rails
url = git://github.com/tomtt/emacs-rails.git
[submodule "fuzzy-find-in-project"]
path = fuzzy-find-in-project
url = git://github.com/avvo/fuzzy-find-in-project.git
18 changes: 13 additions & 5 deletions bastos.el
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,7 @@
auto-mode-alist))

;; Ruby

;; (setq load-path (cons "~/.emacs.d/emacs-rails" load-path))
(setq load-path (cons "~/.emacs.d/emacs-rails" load-path))
(setq load-path (cons "~/.emacs.d/ruby-mode" load-path))

(autoload 'run-ruby "inf-ruby"
Expand All @@ -42,15 +41,20 @@
(inf-ruby-keys)
))

;; (require 'rails)
(require 'rails)

;; (require 'ido)
;; (ido-mode t)

;; Rinari
(add-to-list 'load-path "~/.emacs.d/rinari")
(require 'rinari)
;; (add-to-list 'load-path "~/.emacs.d/rinari")
;; (require 'rinari)

;; Fuzzy Find in Project
;; GEM: sudo gem install --source http://gems.github.com jamis-fuzzy_file_finder
;; Example: (fuzzy-find-project-root "~/path/to/project")
(add-to-list 'load-path "~/.emacs.d/fuzzy-find-in-project")
(require 'fuzzy-find-in-project)

;; Example: (set-key "<f11>" 'gdb)
(defun set-key (kbd funct)
Expand Down Expand Up @@ -120,6 +124,10 @@
;; remove toolbar
(tool-bar-mode nil)

;; Aliases

(defalias 'qrr 'query-replace-regexp)

;; Window resize
(defun win-resize-top-or-bot ()
"Figure out if the current window is on top, bottom or in the
Expand Down
1 change: 1 addition & 0 deletions fuzzy-find-in-project
Submodule fuzzy-find-in-project added at 47cbc4

0 comments on commit 2befd15

Please sign in to comment.