systemSetup

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

3-home.sh (1467B)


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