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 +qallUpdate the repository including submodules:
git fetch --recurse-submodulesInstall 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 "your_email@example.com"See also how to configure ssh-agent.
Install fzf again:
cd "$HOME/.dotfiles" && ./fzf/installQuick 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 masterI'd rather update git to the latest version though.
Setup local timezone:
export TZ=...Refer /usr/share/zoneinfo for the possible values.