Browse Source

add .bashrc

refactor/nvim-lua
garritfra 6 years ago
parent
commit
e38e51ed41
  1. 7
      .bashrc
  2. 6
      install.sh

7
.bashrc

@ -0,0 +1,7 @@
force_color_prompt=yes
export CLICOLOR=1
export LSCOLORS=GxFxCxDxBxegedabagaced
function cd {
builtin cd "$@" && ls
}

6
install.sh

@ -2,5 +2,11 @@
git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim
echo "installing .vimrc"
cp ./.vimrc $HOME/.vimrc
echo "installing .bashrc"
cp ./.bashrc $HOME/.bashrc
cp ./.bashrc $HOME/.bash_profile
echo "installation complete"

Loading…
Cancel
Save