From 46ad610e41b362def174fa57830bf439cd103117 Mon Sep 17 00:00:00 2001 From: Barak Michener Date: Fri, 15 Aug 2014 14:12:11 -0400 Subject: [PATCH] path change --- .bash_profile | 13 ------------- .bashrc | 14 ++++++++++++++ .emacs.d/Cask | 5 ++--- .emacs.d/init.el | 2 ++ 4 files changed, 18 insertions(+), 16 deletions(-) diff --git a/.bash_profile b/.bash_profile index 7aa13c5..9aee501 100644 --- a/.bash_profile +++ b/.bash_profile @@ -8,19 +8,6 @@ # for ssh logins, install and configure the libpam-umask package. #umask 022 -PATH=/$HOME/bin:/bin:/sbin:/usr/local/bin:/usr/local/sbin:/usr/bin:/usr/sbin:/usr/games:/usr/X11R6/bin:/$HOME/.gem/ruby/1.9.1/bin:/$HOME/.cabal/bin:/usr/lib/go/bin:$PATH; export PATH -case `uname` in -SunOS) - UCB_PATH=/usr/sww/lang/acl:/usr/sww/lang/jdk-1.5.0/bin:/usr/openwin/bin:/usr/dt/bin:/usr/sww/opt/java/bin:/usr/sww/bin:/share/b/grading/bin:/share/b/grading/sbin:/share/b/runas/sun4u:/share/b/bin:/home/aa/projects/scheme/bin:/usr/ucb:/usr/ccs/bin:/usr/sfw/bin; export UCB_PATH - PATH=$PATH:$UCB_PATH; export PATH - ;; -Darwin) - MACPORTS_PATH=/opt/local/bin:/opt/local/sbin:/opt/local/usr/bin:/opt/local/usr/local/bin; export MACPORTS_PATH - PATH=$HOME/bin:$MACPORTS_PATH:$PATH; export PATH - export DISPLAY=:0.0 - set completion-ignore-case on - ;; -esac # if running bash if [ -n "$BASH_VERSION" ]; then diff --git a/.bashrc b/.bashrc index 065799a..fa998d2 100644 --- a/.bashrc +++ b/.bashrc @@ -14,6 +14,20 @@ _JAVA_AWT_WM_NONREPARENTING=1; export _JAVA_AWT_WM_NONREPARENTING # set ENV to a file invoked each time sh is started for interactive use. ENV=$HOME/.bashrc; export ENV +PATH=$HOME/bin:$HOME/.gem/ruby/1.9.1/bin:$HOME/.cabal/bin:$HOME/.go/bin:$PATH:/bin:/sbin:/usr/local/bin:/usr/local/sbin:/usr/bin:/usr/sbin:/usr/games:/usr/X11R6/bin:/usr/lib/go/bin; export PATH +case `uname` in +SunOS) + UCB_PATH=/usr/sww/lang/acl:/usr/sww/lang/jdk-1.5.0/bin:/usr/openwin/bin:/usr/dt/bin:/usr/sww/opt/java/bin:/usr/sww/bin:/share/b/grading/bin:/share/b/grading/sbin:/share/b/runas/sun4u:/share/b/bin:/home/aa/projects/scheme/bin:/usr/ucb:/usr/ccs/bin:/usr/sfw/bin; export UCB_PATH + PATH=$PATH:$UCB_PATH; export PATH + ;; +Darwin) + MACPORTS_PATH=/opt/local/bin:/opt/local/sbin:/opt/local/usr/bin:/opt/local/usr/local/bin; export MACPORTS_PATH + PATH=$HOME/bin:$MACPORTS_PATH:$PATH; export PATH + export DISPLAY=:0.0 + set completion-ignore-case on + ;; +esac + MAILPATH=/var/spool/mail/$USER for i in ~/mail/* do diff --git a/.emacs.d/Cask b/.emacs.d/Cask index c4eea94..21007f4 100644 --- a/.emacs.d/Cask +++ b/.emacs.d/Cask @@ -1,6 +1,6 @@ (source gnu) -(source melpa) (source marmalade) +(source melpa) (source org) (depends-on "ack-and-a-half") @@ -8,13 +8,12 @@ (depends-on "auto-complete-clang") (depends-on "auto-complete-clang-async") (depends-on "cask") - (depends-on "cedit") (depends-on "company-go") +(depends-on "dirtree") (depends-on "elpy") (depends-on "epc") (depends-on "evil") -(depends-on "neotree" :git "https://github.com/jaypei/emacs-neotree") (depends-on "exec-path-from-shell") (depends-on "flx-ido") (depends-on "flycheck") diff --git a/.emacs.d/init.el b/.emacs.d/init.el index 554c9db..05c6a69 100644 --- a/.emacs.d/init.el +++ b/.emacs.d/init.el @@ -1,6 +1,7 @@ ;; /This/ file (~init.el~) that you are reading ;; should be in this folder (add-to-list 'load-path "~/.emacs.d/") +(add-to-list 'load-path "~/.emacs.d/neotree") (if (< emacs-major-version 23) (defun characterp (obj) @@ -103,6 +104,7 @@ ;; Neotree (require 'neotree) +(menu-bar-mode -1) ;; Evil Key Defines (define-key evil-normal-state-map "gc" 'kill-buffer-and-window)