💾 Archived View for gmi.noulin.net › gitRepositories › systemSetup › file › rhel_centos › 3-home.sh.… captured on 2024-07-09 at 03:00:33. Gemini links have been rewritten to link to archived content
⬅️ Previous capture (2023-01-29)
-=-=-=-=-=-=-
3-home.sh (1296B)
1 ./updateHome.sh 2 3 # TODO tcc not working - 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 # setup diff-so-fancy in gitconfig 18 ## commented because it is in .gitconfig 19 git config --global core.pager "diff-so-fancy | less --tabs=4 -RFX" 20 git config --global color.ui true 21 22 git config --global color.diff-highlight.oldNormal "red bold" 23 git config --global color.diff-highlight.oldHighlight "red bold 52" 24 git config --global color.diff-highlight.newNormal "green bold" 25 git config --global color.diff-highlight.newHighlight "green bold 22" 26 27 git config --global color.diff.meta "227" 28 git config --global color.diff.frag "magenta bold" 29 git config --global color.diff.commit "227 bold" 30 git config --global color.diff.old "red bold" 31 git config --global color.diff.new "green bold" 32 git config --global color.diff.whitespace "red reverse" 33 git config --bool --global diff-so-fancy.markEmptyLines false 34 git config --bool --global diff-so-fancy.changeHunkIndicators false 35 git config --bool --global diff-so-fancy.stripLeadingSymbols false 36 git config --bool --global diff-so-fancy.useUnicodeRuler false