summaryrefslogtreecommitdiffstats
path: root/.emacs.d
diff options
context:
space:
mode:
Diffstat (limited to '.emacs.d')
-rw-r--r--.emacs.d/ide-skel.el4
-rw-r--r--.emacs.d/include.el4
-rw-r--r--.emacs.d/slash_theme.el28
3 files changed, 33 insertions, 3 deletions
diff --git a/.emacs.d/ide-skel.el b/.emacs.d/ide-skel.el
index 90be871..eb70ec2 100644
--- a/.emacs.d/ide-skel.el
+++ b/.emacs.d/ide-skel.el
@@ -1481,7 +1481,7 @@ static char *close[] = {
(defvar ide-skel-dir-buffer nil)
-(defconst ide-skel-cvs-dir-regexp "\\(\\.svn\\|CVS\\)$")
+(defconst ide-skel-cvs-dir-regexp "\\(\\.svn\\|CVS\\|\\.git\\)$")
(defstruct ide-skel-project
root-path
@@ -3592,7 +3592,7 @@ Return a list of child widgets."
(defun ide-skel-proj-get-all-dirs (root-dir)
(condition-case err
- (split-string (shell-command-to-string (format "find %s -type d | grep -v '/CVS\\|/\\.svn'" root-dir))
+ (split-string (shell-command-to-string (format "find %s -type d | grep -v '/CVS\\|/\\.svn\\|/\\.git'" root-dir))
"\n" t)
(error nil)))
diff --git a/.emacs.d/include.el b/.emacs.d/include.el
index 4043f3e..1a6e238 100644
--- a/.emacs.d/include.el
+++ b/.emacs.d/include.el
@@ -15,4 +15,6 @@
"~/.emacs.d/rainbow-mode.el" "A Minor mode for showing colors inline" t)
(load-file "~/.emacs.d/autopair.el")
(load-file "~/.emacs.d/auto-complete-config.el")
-(require 'auto-complete-config) \ No newline at end of file
+(require 'auto-complete-config)
+(require 'tabbar)
+(require 'ide-skel) \ No newline at end of file
diff --git a/.emacs.d/slash_theme.el b/.emacs.d/slash_theme.el
index c2f54b6..1847b6d 100644
--- a/.emacs.d/slash_theme.el
+++ b/.emacs.d/slash_theme.el
@@ -36,3 +36,31 @@
(font-lock-variable-name-face ((t (:foreground "#18EFF2"))))
(font-lock-warning-face ((t (:foreground "#FF0000" :bold t)))))))
(provide 'color-theme-weirdness)
+
+;; ryrobes color theme
+(defun color-theme-vibrant-ink ()
+ (interactive)
+ (color-theme-install
+ '(color-theme-ryrobes
+ ((background-color . "#000000")
+ (background-mode . dark)
+ (border-color . "#000000")
+ (cursor-color . "#FFFFFF")
+ (foreground-color . "#FFFFFF")
+ (mouse-color . "#FFFFFF"))
+ (font-lock-comment-face ((t (:foreground "#9933CC" :italic t))))
+ (font-lock-keyword-face ((t (:foreground "#FF6600"))))
+ (font-lock-type-face ((t (:foreground "#FFCC00"))))
+ (font-lock-string-face ((t (:foreground "#66FF00")))))))
+(provide 'color-theme-vibrant-ink)
+(provide 'color-theme-ryrobes)
+
+
+
+
+
+
+
+
+
+