added check for env stuff to `.bashrc`

master
Michael Ochmann 4 years ago
parent 36b0bc84d3
commit ccb04cf92c
  1. 10
      .bashrc
  2. BIN
      .ssh/config.d/.propeller.swp
  3. 1
      .vimrc

@ -232,8 +232,14 @@ export MANPATH="$NPM_PACKAGES/share/man:$(manpath)"
# *ENV STUFF # *ENV STUFF
eval "$(anyenv init -)" if [ -y /usr/local/bin/anyenv ]
eval "$(rbenv init -)" then
eval "$(anyenv init -)"
fi
if [ -y /usr/local/bin/rbenv ]
then
eval "$(rbenv init -)"
fi
# ALIASES # ALIASES
alias ll="ls -lisa" alias ll="ls -lisa"

Binary file not shown.

@ -45,3 +45,4 @@ map <silent> <C-n> :NERDTreeToggle<CR>
nnoremap <buffer> <F5> :w<cr> :! clear; ./% <cr> nnoremap <buffer> <F5> :w<cr> :! clear; ./% <cr>
let g:closetag_filenames = '*.html,*.xhtml,*.phtml,*.php' let g:closetag_filenames = '*.html,*.xhtml,*.phtml,*.php'
autocmd BufRead ~/.ssh/config.d/* set syntax=sshconfig

Loading…
Cancel
Save