Personal dotfiles.
Basic install:
cd "$HOME"
git clone https://github.com/zeta709/dotfiles.git .dotfiles
cd .dotfiles
git submodule update --init --recursive
./install.sh
vim +PlugInstall +qall
Update the repository including submodules:
git fetch --recurse-submodules
Install Vim plugins after modifying the settings:
type :PlugInstall
in vim.
Open regedit and go to the key
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\FontLink\SystemLink
.
Add or edit the data of multi-string value for your font as follows:
SEGUISYM.TTF,Segoe UI Symbol
Refer the example registry: font.reg. Also refer font technology from Microsoft for more details.
It has been moved to another repository. See color-schemes.md for the old document.
Generating a new SSH key:
ssh-keygen -t ed25519 -C "[email protected]"
See also how to configure ssh-agent.
Install fzf again:
cd "$HOME/.dotfiles" && ./fzf/install
Quick install using curl (the script is out of maintenance):
sh -c "$(curl -fsSL https://raw.githubusercontent.com/zeta709/dotfiles/master/install_quick.sh)"
For older git users (if git fetch --recurse-submodules
doesn't work):
git fetch
git submodule update --recursive --remote # for >=git-1.8.2, or
git submodule foreach git pull origin master
I'd rather update git to the latest version though.
Setup local timezone:
export TZ=...
Refer /usr/share/zoneinfo
for the possible values.