systemSetup

system setup, configuration and dotfiles
git clone https://noulin.net/git/systemSetup.git
Log | Files | Refs | README | LICENSE

3-home.sh (1496B)


      1 ./updateHome.sh
      2 
      3 cp .bash_aliases ~/
      4 cp .bashrc ~/
      5 
      6 #install vim vundle
      7 git clone https://github.com/gmarik/Vundle.vim.git ~/.vim/bundle/Vundle.vim
      8 
      9 # in vim run :PluginInstall
     10 echo 'in vim run :PluginInstall'
     11 
     12 # fzf
     13 git clone https://github.com/junegunn/fzf.git
     14 cd fzf
     15 ./install --all
     16 cd ..
     17 
     18 # docker for non-root users
     19 #echo 'Setting up docker for non-root users'
     20 #sudo gpasswd -a $USER docker
     21 # reinitialize environment to load the new group
     22 # starts a new shell - not good
     23 # newgrp -
     24 
     25 # setup diff-so-fancy in gitconfig
     26 # commented because it is in .gitconfig
     27  git config --global core.pager "diff-so-fancy | less --tabs=4 -RFX"
     28  git config --global color.ui true
     29 
     30  git config --global color.diff-highlight.oldNormal "red bold"
     31  git config --global color.diff-highlight.oldHighlight "red bold 52"
     32  git config --global color.diff-highlight.newNormal "green bold"
     33  git config --global color.diff-highlight.newHighlight "green bold 22"
     34 
     35  git config --global color.diff.meta "227"
     36  git config --global color.diff.frag "magenta bold"
     37  git config --global color.diff.commit "227 bold"
     38  git config --global color.diff.old "red bold"
     39  git config --global color.diff.new "green bold"
     40  git config --global color.diff.whitespace "red reverse"
     41 git config --bool --global diff-so-fancy.markEmptyLines false
     42 git config --bool --global diff-so-fancy.changeHunkIndicators false
     43 git config --bool --global diff-so-fancy.stripLeadingSymbols false
     44 git config --bool --global diff-so-fancy.useUnicodeRuler false