diff options
author | Patrick Simianer <p@simianer.de> | 2014-08-08 19:12:36 +0100 |
---|---|---|
committer | Patrick Simianer <p@simianer.de> | 2014-08-08 19:12:36 +0100 |
commit | f65c82b17609f3f6c5dc40264b8a2ba55178d4a8 (patch) | |
tree | 2d99a58bb058bc56dd7287a98c315217eaa644a0 | |
parent | f06cad777de4815a1a936475b2fff2c48375dc4c (diff) |
vimrc: pathes, zshrc: PATH, ccache
-rw-r--r-- | .vim/bundle/LIST | 18 | ||||
-rw-r--r-- | .vimrc | 2 | ||||
-rw-r--r-- | .zshrc | 8 |
3 files changed, 21 insertions, 7 deletions
diff --git a/.vim/bundle/LIST b/.vim/bundle/LIST new file mode 100644 index 0000000..fb25131 --- /dev/null +++ b/.vim/bundle/LIST @@ -0,0 +1,18 @@ +https://github.com/docunext/closetag.vim.git +https://github.com/scrooloose/nerdcommenter.git +https://github.com/scrooloose/nerdtree.git +https://github.com/scrooloose/syntastic.git +https://github.com/majutsushi/tagbar.git +https://github.com/SirVer/ultisnips.git +https://github.com/bling/vim-airline.git +https://github.com/tpope/vim-endwise.git +https://github.com/tpope/vim-fugitive.git +https://github.com/vim-ruby/vim-ruby.git +https://github.com/tpope/vim-surround.git +https://github.com/vimwiki/vimwiki.git +https://github.com/gmarik/vundle.git +https://github.com/Valloric/YouCompleteMe.git +https://github.com/davidhalter/jedi.git +https://github.com/kennethreitz/requests +https://github.com/ross/requests-futures +https://github.com/Valloric/ycmd @@ -97,5 +97,5 @@ let g:airline_powerline_fonts = 1 "let g:airline_linecolumn_prefix = '' " vimwiki -let g:vimwiki_list = [{'path':'~/stuff/wiki', 'path_html':'~/stuff/wiki/html/'}] +let g:vimwiki_list = [{'path':'~/var/wiki', 'path_html':'~/var/wiki/html/'}] @@ -36,7 +36,7 @@ ex () { } umask 0077 -export PATH=~/bin:~/scripts:~/lib/ruby/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin:$PATH +export PATH=~/bin:/home/pks/bin:~/scripts:~/lib/ruby/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin:$PATH export RUBYOPT=-Ku export CCACHE_PATH=/usr/bin export TEXMFHOME='~/.texmf' @@ -95,11 +95,7 @@ case `hostname` in ;; x) PROMPT="[%~]%{$fg[magenta]%}$B%%%b%{$reset_color%} " - alias c++='/usr/lib/colorgcc/bin/g++ $CXXFLAGS' - alias cc='/usr/lib/colorgcc/bin/gcc $CFLAGS' - alias cpp='c++' - alias g++='c++' - alias gcc='cc' + PATH=/usr/lib/colorgcc/bin:$PATH ;; esac |