💾 Archived View for gmi.noulin.net › gitRepositories › systemSetup › file › openbsd › 3-home.sh.gmi captured on 2023-07-10 at 15:47:40. Gemini links have been rewritten to link to archived content

View Raw

More Information

⬅️ Previous capture (2023-01-29)

-=-=-=-=-=-=-

systemSetup

Log

Files

Refs

README

LICENSE

3-home.sh (1271B)

     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 # 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